Finalized latest changes

This commit is contained in:
Bernd Bestel
2018-09-08 14:06:19 +02:00
parent bb60f5f043
commit 6b38cd450f
5 changed files with 10 additions and 8 deletions

View File

@@ -2,6 +2,7 @@ $(".numberpicker-down-button").unbind('click').on("click", function ()
{
var inputElement = $(this).parent().parent().find('input[type="number"]')[0];
inputElement.stepDown();
$(inputElement).trigger('keyup');
$(inputElement).trigger('change');
});
@@ -9,5 +10,6 @@ $(".numberpicker-up-button").unbind('click').on("click", function()
{
var inputElement = $(this).parent().parent().find('input[type="number"]')[0];
inputElement.stepUp();
$(inputElement).trigger('keyup');
$(inputElement).trigger('change');
});