我正在使用aspxgridview并在使用RowInserting
事件添加操作后我不使用
gridView.CancelEdit();
因为我需要addform仍然需要插入另一行。
我的问题是:如何在addform中清除控件中的数据,直到我可以为第二行插入新数据?
感谢
答案 0 :(得分:0)
我通过使用ASPxClientEdit.ClearEditorsInContainer解决了我的问题:
clientsideevents EndCallback =“function(s,e){
if(s.cpIsUpdated)
{
ASPxClientEdit.ClearEditorsInContainer(数据筒);
}
}“
并在RowInserting事件后添加以下代码:
gridView.JSProperties["cpIsUpdated"] = true;
感谢