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
240
DropDown in UltraWebGrid question
posted

I'm binding a dataset into a hierarchical web grid. The first band has 6 columns and the 2nd band has 8 columns.

I want to put a dropdown list into Bands[ 1 ].Columns[ 8 ].   I do not know how to do this based on the samples and I would like to set the dropdown list selection based on the data received from the database.

 

Any help would be appreciated.

Parents
  • 8680
    posted
    • Set Bands(1).Columns(8).Type to DropDown
    • Bind your Bands(1).Columns(8).DataList to the values you want listed in the dropdown. 
    • Set Bands(1).Columns(8).DataType to match the type of data being bound to that column.
    • Make sure the data types of the datalist, column, and database data all match.

    HTH

Reply Children