Heloo,
I have added a combo box column programmatically with a static data source.
Now i need that whenever i select any of the item a specific function should be invoked.
I have tried with different events but didnt found a solution.
Please Help
I have added a combo box column programmatically with a static data source.
Now i need that whenever i select any of the item a specific function should be invoked.
I have tried with different events but didnt found a solution.
Please Help
var dg = new GridViewComboBoxColumn { DataSource = new[] { "Edit", "Delete" }, HeaderText = "Action", Name = "col_Action", Width = 80, AllowResize = true, FieldName = "gv_cmb_Action", SortOrder = RadSortOrder.None, AllowFiltering = false, AllowGroup = false, AllowSort = false, ReadOnly = false }; if (gv_Criteria.ColumnCount != 9) { gv_Criteria.Columns.Insert(8, dg); }