1234567891011121314151617181920212223242526272829303132 |
- function executeOk(evt)
- {
- if(goDialogManager.isSpaceOrEnterKeyEvent(evt))
- {
- execute();
- }
- };
-
- function executeCancel(evt)
- {
- if(goDialogManager.isSpaceOrEnterKeyEvent(evt))
- {
- typeof this.cancelDialog == 'function' ? this.cancelDialog() : getConfigFrame().hideDialogFrame();
- }
- };
|