示例#1
0
 protected override void DoClosePopup(PopupCloseMode closeMode)
 {
     //Clear the filter textbox without
     //affecting the editor's EditValue
     MaskBox.SetEditValue("", "", true);
     base.DoClosePopup(closeMode);
 }
示例#2
0
 protected override void DoShowPopup()
 {
     //Clear the filter textbox without
     //affecting the editor's EditValue
     MaskBox.SetEditValue("", "", true);
     RunFilter(force: true);
     base.DoShowPopup();
 }