Ticket #6306: 6306.patch

File 6306.patch, 472 bytes (added by doughays, 10 months ago)

patch to review

  • form/_FormWidget.js

     
    331331                                return false; 
    332332                        } 
    333333                } 
     334                else if(this.intermediateChanges){ 
     335                        var _this = this; 
     336                        // the setTimeout allows the key to post to the widget input box 
     337                        setTimeout(function(){ _this._handleOnChange(_this.getValue(), false); }, 0); 
     338                } 
    334339                return true; 
    335340        } 
    336341});