Changeset 1632
- Timestamp:
- 2010-07-26 14:53:59 (3 years ago)
- Location:
- trunk/modules/kauri-forms/kauri-forms-framework/src/main/kauri/static-{build}.key/kauri.forms
- Files:
-
- 2 edited
-
case.js (modified) (1 diff)
-
control.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/kauri-forms/kauri-forms-framework/src/main/kauri/static-{build}.key/kauri.forms/case.js
r1630 r1632 225 225 * @private 226 226 */ 227 CaseControl.prototype.initEvent Wiring= function () {227 CaseControl.prototype.initEvents = function () { 228 228 var me = this; 229 229 var caseControl = this.getChild("case"); 230 231 230 // we are now setting the valueChanged handler 232 231 caseControl.valueChanged(function (evt) { -
trunk/modules/kauri-forms/kauri-forms-framework/src/main/kauri/static-{build}.key/kauri.forms/control.js
r1625 r1632 1592 1592 */ 1593 1593 Control.prototype.setWireValue = function(wireValue, noValidation){ 1594 1595 1594 try { 1596 1595 var value = this.getType().parseWireValue(wireValue); … … 2416 2415 }, 2417 2416 isEnabled: function(){ 2418 return me.initial.enable && this.initial.enable;2417 return (me.initial.enable && this.initial.enable) || me.initial.enable == undefined ; 2419 2418 } 2420 2419 }); // inline overwrite the getParent method on the child being created
Note: See TracChangeset
for help on using the changeset viewer.