I have a grid wich has in it's "add new" row a ultraCombo. For the other rows, on the same colum, the cells are uneditable. After a new row is inserted, in the new row, on that column instead of having a uneditable cell, i have the same ultraCombo.
Any ideea why, or could i stop that?
Thanks!
You have the UltraCombo, but can you change its value? Anyway, you can assign the combo to the cell only and not for the whole column. In the event handler where you set the activation of the template row, you can assign the combo to a single cell in that row.
It sounds like you need to set the Activation property on the row once it goes from being an AddNew to a normal row so that the user cannot edit it any more.
Or, you will have to assign the UltraCombo only to the cell in the (Template)AddNewRow and then clear it out when it gets committed.