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
180
How to add dynamically created combobox on CellClickEvent of Ultrawingrid
posted

Hi, I have an edit button in my grid, on click of which i want to change one grid cell of selected row to combobox.

I have written below code for the same in CellClickEvent of the grid:-

string action = e.Cell.Value.ToString();

if (action == "Edit")

 {

 e.Cell.Value = "Update";

 UltraCombo ultraComboPanel = new UltraCombo();

ultraComboPanel.DataSource = _columnsList;

//assig  combobox to the grid cell

}

But i do not know how to assign combobox to that grid cell. Is my approach correct?

Parents Reply Children
No Data