Maneesh Godbole wrote:Looks like your requirement is like this:
1) You got data which has multiple attributes
2) These attributes need to be displayed as columns
3) Some of the attribute values can translate to heavy data.
4) You want to optimize the user experience so its fast.
5) One way of optimizing is fetching and displaying data only when required
Is this correct? If yes, my initial suggestion still holds true. You can display data in a tabular format with headers and all. To load and display heavy data at runtime, use a tree or a disclosure panel or even a lazy loading panel.
If this is not what you had in mind, please tell us what exactly you are trying to do.
PS. In the link you provided, incorporating headers is not that difficult. Just make them the first row of your table.
yeah.. requirements are OK. what i'm looking for is solution for fllowing... .
i have this simple example:
this is only table with data without expanded/colpased rows. So i need to add this functionality to this table and i don't know how.
I would like to use DisclosurePanel (if it is possible in this case) for it. So it means that i need define another column - which one/which kind of type?
Smth like this:
and next question is how can i achieve will be expanded throught all columns in table = colspan in HTML.
thanks