I would like to be able to take the attributes from a featureSet and display them more like an mailing address in a pane along side my map.
Facility Name Address City, State
I see that I can easily put this information in a grid, but then the data is presented as columns and I really want a much smaller footprint on the screen.
I know how to do this in Flex using a datagrid renderer, but I don't see that there is such a thing in JavaScript.
I was trying to put it within the constructor, so I was close.
I see a lot of potential for dGrid vs DataGrid. I wish there were a few more examples. Mostly I've been looking at http://www.sitepen.com/blog/2011/10/26/introducing-the-next-grid-dgrid/ If you know of other good places to check, please let me know. I'd like to also have this tied to a mouse over event. I need to be able to highlight a feature on the list and have it highlight on the map and vice versa. I have an existing FLEX application and I'm trying to get all the functionality moved into JS. It's not easy!
In an example from the 2009 DS, I see someone used dojo.connect (grid, "onRowMouseOver", function () { } but dGrid seems to be different enough that I'm not going to be able to do this. Instead it looks like the grid can be extended to be a SelectionGrid?
I think I need to do some more reading. I'm a Flex developer and using all that terminology !
My code was working well and suddenly the sort doesn't work anymore. I don't see any errors and I've not changed the functions that deal with it. Very frustrating.