Does anyone know if it is possible (via the designer) to define a single column within the Ultragrid,
so that each of it's cell rows has a Ultradropdown, with a predefined list of choices you have setup
within the designer? e.g. dropdown contains list items "Yes", "No" they can select... with a default
value that is set.
Hi,
Yes, of course this is possible. Which part of it is giving you trouble?
A basic overview of how to do this is something like this:
Drop a grid on a form and use the designer to create a data source (or bind to a data source) with a single column.
Then you need to create the dropdown. You could do this with a ValueList or an UltraDropDown. HOWTO:What is the best way to place a DropDown list in a grid cell?
You attach the dropdown to the column using the ValueList property on the column.
Mike,
Thank you for your quick reply!
The HOWTO link you inserted is broke.
The part that is giving me trouble... is that I have a dropdown ctrl
added to the ultragrid, and have the ValueList property set to that
dropdown but no dropdown is displayed within the cell. I have not
added any values to the dropdown yet... so am assuming that might
be the issue?