Hi there, We are not yet using xamwebrid but will do so shortly. Question: One use we have in mind for the webgrid is to create a treelist outliner - i.e., the outliner items or topics will have multi-line word-wrap capability, and be capable of unlimited hierarchical depth (children, grand children, great grand children, etc.) but without necessarily needing to display the headers/column titles for the child, etc levels as shown in your sample applications. In other words, there will be columns for the top level topics only.
Put another way, it will be something like your tree component but with columns capability and multi-line capability.
Is this possible in xamgrid? If so, how to achieve it?
Thanks in advance, Eric Sommer
Awesome! The answer we needed - and posted two minutes after we asked! Warm regards, Eric Sommer
Hi Eric,
Yes, the XamWebGrid allows you to turn off ColumnHeaders on inidividual Levels (aka ColumnLayouts) or on all ColumnLayouts.
To turn off all Levels (this.XamWebGrid1.HeaderVisibility = Collapsed)
For inidividual ColumnLayouts, in the ColumnLayout definition, you can just set it's HeaderVisibility to Collapsed.
As for word wrapping, you can use a TextColumn, and set the TextWrapping property to Wrap.
Hope this helps,
-SteveZ