Ticket #2630: IntegerTextbox.patch
| File IntegerTextbox.patch, 490 bytes (added by joose, 21 months ago) |
|---|
-
src/widget/IntegerTextbox.js
52 52 53 53 isValid: function(){ 54 54 // summary: Over-ride for integer validation 55 if(!this.isMissing()){ 56 if(this.textbox.value == ""){ 57 return true; 58 } 59 } 55 60 return dojo.validate.isInteger(this.textbox.value, this.flags); 56 61 }, 57 62 isInRange: function(){