diff options
author | Mike Gerwitz <mike.gerwitz@rtspecialty.com> | 2018-04-05 09:04:38 -0400 |
---|---|---|
committer | Mike Gerwitz <mike.gerwitz@rtspecialty.com> | 2018-04-05 09:04:38 -0400 |
commit | b5fc56c62c8221363759a04dd4d70845d0e1bfd3 (patch) | |
tree | d5376dbefba7b114c47222aa4dc81d6d97bf2776 | |
parent | 6733556582355f9c884c3e5099e272eeca5d49d7 (diff) | |
parent | f5f753d3bbaafb88075036769a4df0e04c8d538e (diff) | |
download | liza-b5fc56c62c8221363759a04dd4d70845d0e1bfd3.tar.gz liza-b5fc56c62c8221363759a04dd4d70845d0e1bfd3.tar.bz2 liza-b5fc56c62c8221363759a04dd4d70845d0e1bfd3.zip |
Client: updateFieldData setOptions current value fixv3.5.3
-rw-r--r-- | src/client/Client.js | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/client/Client.js b/src/client/Client.js index a090a84..75fcc3b 100644 --- a/src/client/Client.js +++ b/src/client/Client.js @@ -842,15 +842,13 @@ module.exports = Class( 'Client' ) // populate and enable field *only if* results were returned // and if the quote has not been locked; but first, give the // UI a chance to finish updating - (function ( index ) + ( function( index, cur ) { setTimeout( function() { - group - .setOptions( name, index, data, cur ); - }, 25 ); - })(i) - + group.setOptions( name, index, data, cur ); + }, 0 ); + } )( i, cur ); } update.length && _self._quote.setDataByName( name, update ); |