Commit 1fd663367f4c130454d5995c3921d9994708c3da
1 parent
e0e05fa5
Exists in
master
and in
99 other branches
Fix numeric fields precision for filter (#7048)
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
js/app/views/CatalogUI.js
... | ... | @@ -389,7 +389,7 @@ Ext.define('amdaUI.CatalogUI', { |
389 | 389 | xtype: 'gridcolumn', |
390 | 390 | width: pramColumnWidth * parseInt(obj.size), |
391 | 391 | editor: 'textfield', |
392 | - filter: {type: 'numeric'} | |
392 | + filter: {type: 'numeric', menuItemCfgs: {decimalPrecision: 10}} | |
393 | 393 | }); |
394 | 394 | break; |
395 | 395 | case 1: //dateTime | ... | ... |