Hi !
I have a "Add new row" row at the bottom of the grid, wich is basically a set of empty fields waiting to be filled. Instead of that I would like to have a ultracombo filled from a datasource in on the whole lenght of the row. Do you have any ideea how could i do this?
Thanks,
Marius.
Hi Marius,
I don't think I understand what you are asking. You want an ultracombo to fill the entire AddNew row? What happens when the user chooses a value from the combo?
You could probably acheive something like this using a RowLayout and an unbound column. You could set up a RowLayout at run-time such that all of the existing cells in the row stay where they are, but you also add an unbound column to the grid which spans across the existing cells. Then you could use events of the grid to either hide the unbound cell (for existing rows) or hide all of the bound cells (for the addnew row).
The combo will be placed at the bottom of a "user roles" grid and it will have as options the content of roles table. When a option is picked , a role should be added to that user.
Any ideas on how to implement this ?