Hello,
I have a business object collection that I want to databind to an UltraWebGrid. I can easily do it using the Databind method of the grid. However, by doing it this way, all the public members of te business objects are shown in their respective column.
Is there a way I can show only some of the public properties of the business object instead of everything?
Thanks!
Ensure that the BaseColumnName and Key properties of the UltraGridColumn object match the name of the corresponding property on your business object.
Hi,
Thanks for the fast answer, how do I bind a column to a specific property of the business object?
I'd think you can turn off autogeneratecolumns and manually add columns to the grid then bind them to the properties of your object. I am not certain, I am new to this stuff.