Changeset 1545
- Timestamp:
- 2010-06-07 11:48:17 (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) (2 diffs)
-
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
r1510 r1545 6 6 7 7 if (!$) 8 throw "[c omposite.js] requires jQuery";8 throw "[case.js] requires jQuery"; 9 9 if (!$.org.kauriproject.forms) 10 throw "[c omposite.js] requires the kauri-form namespace";10 throw "[case.js] requires the kauri-form namespace"; 11 11 12 12 var kp = $.org.kauriproject; … … 256 256 } 257 257 258 259 /** 260 * Runs validation on this control and acknowledges a change in value 261 * @param {Boolean} noValidation perform validation or not 262 */ 263 CaseControl.prototype.updateValue = function(noValidation){ 264 } 258 259 260 265 261 266 262 -
trunk/modules/kauri-forms/kauri-forms-framework/src/main/kauri/static-{build}.key/kauri.forms/control.js
r1543 r1545 2174 2174 } 2175 2175 2176 /** The input-element which change() event should trigger the update sequence. Undefinef disables update. */ 2177 AbstractContainerControl.prototype.getUpdateElement = function(){ 2178 }; 2176 2179 2177 2180 2178 … … 2381 2379 } 2382 2380 2381 AbstractContainerControl.prototype.getUpdateElement = function(){ 2382 return undefined; 2383 }; 2383 2384 2384 2385 })(jQuery);
Note: See TracChangeset
for help on using the changeset viewer.