0
我有一個ASPxGrid,數據從多個表中的數據庫中提取。我想內聯編輯兩個單元格。 我需要用數據值更新表格,然後在數據網格中顯示更改。我不知道如何實現這一點。我正在使用rowupdating事件。然後採取編輯的值,並希望插入數據庫。這是我所擁有的或我需要做的事情的想法。使用內聯編輯更新DepxPress AspxGrid
protected void ASPxGridView1_RowUpdating(object sender, DevExpress.Web.Data.ASPxDataUpdatingEventArgs e)
{
//DoUpdate(e);
ASPxGridView gridView = (ASPxGridView)sender;
gridView.CancelEdit();
e.Cancel = true;
}
幫助將不勝感激。謝謝