we are using kendonumericbox..
the problem is need to enable the button on click of the numeric box arrows. Means once the user click the arrows we have to enable the button.
or if the user enters data manually also we have to enable. Added the code and its working as expected.
But here first time clicked the numericbox arrow and erased data manually. then again pressed arrow this time the enable of the button taking little time.
this is happening only first time. Suppose if i click cursor any where then working as expected.
kindly suggest/help on this.

Jayraj ChhayaPosted Nov 11, 2024, 6:32 AM
To address the issue of enabling a button upon clicking the KendoNumericBox arrows or entering data manually, you can utilize jQuery's event handling. The delay you're experiencing on the first click may be due to the way events are being triggered.
Here’s a refined approach to ensure the button is enabled immediately after any interaction with the KendoNumericBox:
we bind the
changeandinputevents to the KendoNumericBox. This ensures that the button is enabled or disabled based on the current value of the numeric box, regardless of how the value is changed.If the issue persists, consider checking for any additional event listeners or delays in your code that might be affecting the responsiveness.