[SSE] Remove limits for rank rules
This commit is contained in:
parent
1bef03a545
commit
63c15a4efe
|
@ -488,7 +488,7 @@ define([
|
||||||
]
|
]
|
||||||
}).on('selected', function(combo, record) {
|
}).on('selected', function(combo, record) {
|
||||||
var percent = !!record.value;
|
var percent = !!record.value;
|
||||||
me.numRank.setMaxValue(percent ? 100 : 1000);
|
// me.numRank.setMaxValue(percent ? 100 : 1000);
|
||||||
me.numRank.setValue(me.numRank.getNumberValue());
|
me.numRank.setValue(me.numRank.getNumberValue());
|
||||||
});
|
});
|
||||||
this.cmbPercent.setValue(0);
|
this.cmbPercent.setValue(0);
|
||||||
|
@ -501,8 +501,8 @@ define([
|
||||||
defaultValue : 10,
|
defaultValue : 10,
|
||||||
allowDecimal: false,
|
allowDecimal: false,
|
||||||
value: '10',
|
value: '10',
|
||||||
maxValue: 1000,
|
maxValue: 1000000000000,
|
||||||
minValue: 1
|
minValue: -1000000000000
|
||||||
});
|
});
|
||||||
this.numRank.on('change', _.bind(function(field, newValue, oldValue, eOpts){
|
this.numRank.on('change', _.bind(function(field, newValue, oldValue, eOpts){
|
||||||
}, this));
|
}, this));
|
||||||
|
|
Loading…
Reference in a new issue