Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
135
UltraGrid and DataSource
posted

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.

Parents
No Data
Reply
  • 3555
    posted
    You can just hide the columns

    UltraGridBand band = this.ultraGridPop.DisplayLayout.Bands[0];

    //Hide Columns

    band.Columns["yourcolumn"].Hidden = true;


    wrote in message news:14957@forums.infragistics.com...
    > 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.
    >
Children