Hi,
i bind the ultragrid with a BindingList(of CustomObject) but i would like to add band programmatically to extend the grid with new features...
How can i do that?
Thank you.
You cannot add an unbound band to the grid - bands have to come from the DataSource. To create a child band, what you have to do is expose a public property on the CustomObject class which returns another BindingList.The items in the child bindinglist will be displayed as child rows in the grid.