Skip to content

Commit

Permalink
Fix #3192: InputNumber do not fire change event with suffix (#4854)
Browse files Browse the repository at this point in the history
* Fix #3192: InputNumber do not fire change event with suffix

* Fix #3192: InputNumber do not fire change event with suffix

* Fix #3192: InputNumber do not fire change event with suffix
  • Loading branch information
melloware committed Jul 8, 2019
1 parent 22ea5c9 commit 571161d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Expand Up @@ -1096,8 +1096,9 @@
if (groupedValue === null) {
groupedValue = autoGroup(value, $settings);
}
if (groupedValue !== holder.inVal || groupedValue !== origValue) {
$this.val(groupedValue);
// PF GitHub #3192
$this.val(groupedValue);
if (groupedValue !== holder.inVal) {
$this.change();
delete holder.inVal;
}
Expand Down
@@ -0,0 +1 @@
Fix #3192: Edited lines 1099-1101 to not fire change event if the InputNumber contains a suffix

0 comments on commit 571161d

Please sign in to comment.