I've searched the forums for an example of this, but haven't found an obvious example.
I want to implement a combo that displays dropdown data in its listview as multiple columns. I'm naively thinking its just a matter of setting up a template that can render a table and its rows, but I'm not sure how to do even that. Specifically, I'm not sure where to place the table and column header markup in the template vs. the markup that's needed for each row.
If there's an even better way for doing this, for example a way to render columns that are resizable, I'd appreciate any tips.
Look at the tpl that exists in ComboBiox, and read the XTemplate docs. After reading the docs, you will be able to see The existing one looping over the Records.
So you will have your '<table><tbody>' outside the loop, and a '<tr......>....</tr>' inside the loop.