
Please somebody let me know what should I do in this case and fire event on selection of GridViewDataComboBoxColumn item in code side. Thanks in advance.Actually I’m new in Asp.net DevExpress technologies. String ParameterName = MyParameters.Trim() ĪSPxGridView grid = (ASPxGridView)sender ĭt = GetFacilityList(MyParameters.Trim()) ĪSPxComboBox combo = ASPxGridView.FindEditFormTemplateControl("InternalFacilityName") as ASPxComboBox String MyParameters = e.Parameters.ToString().Split('|') If (e.Parameters.ToString().Contains("|"))

Protected void ASPxGridView_CustomCallback(object sender, ASPxGridViewCustomCallbackEventArgs e) Var facilityID = ASPxGridView.GetRowValuesByKeyValue(e.KeyValue, "FacilityID") ĭt = GetFacilityList(facilityID.ToString()) If ((ASPxGridView.IsEditing) & (e.Column.FieldName = "InternalFacilityName"))ĪSPxComboBox combo = e.Editor as ASPxComboBox Protected void ASPxGridView_CellEditorInitialize(object sender, ASPxGridViewEditorEventArgs e) OnCellEditorInitialize="ASPxGridView_CellEditorInitialize" > OnRowValidating="ASPxGridView_RowValidating" OnCustomCallback="ASPxGridView_CustomCallback" To enable row edit mode, set the mode property to 'row' and assign true to the editing objects allowUpdating, allowAdding, and allowDeleting properties. Only one row can be in the edit state at a time. To start editing any row, click 'Edit' in it.

ConfirmDelete="True" KeyFieldName="ID"ĬssFilePath="~/App_Themes/Office2003 Blue//styles.css" The DataGrid allows users to edit data in multiple modes.

I have used CustomCallBack on "FacilityID" anycodings_c# change to get the changed value but I am not anycodings_c# able to access the combo box control using anycodings_c# FindEditFormTemplateControl. I am able to anycodings_c# load a combo box "InternalFaciltyName" in anycodings_c# the gird based on "FacilityID"column value anycodings_c# using CellEditorInitialize, but I need to anycodings_c# reload the combo box when the "FacilityID" anycodings_c# column value is changed during edit.
