1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- if(!dojo._hasResource["dijit._DialogMixin"]){
- dojo._hasResource["dijit._DialogMixin"] = true;
- dojo.provide("dijit._DialogMixin");
- dojo.require("dijit._Widget");
- dojo.declare("dijit._DialogMixin", null,
- {
-
-
- attributeMap: dijit._Widget.prototype.attributeMap,
- execute: function(/*Object*/ formContents){
-
-
-
-
-
-
-
-
-
-
-
- },
- onCancel: function(){
-
-
-
-
-
-
-
-
- },
- onExecute: function(){
-
-
-
-
-
-
-
-
- },
- _onSubmit: function(){
-
-
-
-
- this.onExecute();
- this.execute(this.get('value'));
- },
- _getFocusItems: function(){
-
-
-
-
-
- var elems = dijit._getTabNavigable(this.containerNode);
- this._firstFocusItem = elems.lowest || elems.first || this.closeButtonNode || this.domNode;
- this._lastFocusItem = elems.last || elems.highest || this._firstFocusItem;
- }
- }
- );
- }
|