I have a RadGrid with the following properties:
The UpdateCommand is not being fired!
this._RadGrid1.ID = "RadGrid1";this._RadGrid1.AllowAutomaticDeletes = false;this._RadGrid1.AllowAutomaticInserts = false;this._RadGrid1.AllowAutomaticUpdates = false; this._RadGrid1.AllowMultiRowSelection = true; this._RadGrid1.MasterTableView.NoMasterRecordsText = "No BAN Assignments found"; //Adding Columns// GridEditCommandColumn gridEditCommandColumn = new GridEditCommandColumn(); gridEditCommandColumn.UniqueName = "GridEditCommandColumn"; this._RadGrid1.MasterTableView.Columns.Add(gridEditCommandColumn); this._RadGrid1.MasterTableView.EditMode = GridEditMode.InPlace; this._RadGrid1.MasterTableView.DataKeyNames = new string[] { tis._PriceDealProductBanTable.PriceDealEntityProductItemIdColumn.ColumnName };this._RadGrid1.MasterTableView.ClientDataKeyNames = new string[] { this._PriceDealProductBanTable.PriceDealEntityProductItemIdColumn.ColumnName }; this._RadGrid1.UpdateCommand += RadGrid1_UpdateCommand;this._RadGrid1.NeedDataSource += RadGrid1_NeedDataSource;protected void RadGrid1_UpdateCommand(object source, GridCommandEventArgs e) { var xmlBuilder = new System.Text.StringBuilder(); }
