Hello, here is my issue:
I have DataTable with few columns, as datasource.
But in my UltraGrid i would not like to show all columns from datasource.
How can I bound only those columns, I need?
Thanks.
peryan77 said:You can just hide the columns UltraGridBand band = this.ultraGridPop.DisplayLayout.Bands[0]; //Hide Columns band.Columns["yourcolumn"].Hidden = true; >
I did it the same, butI don't think this is the best solution
Hello, here is mu issue: