I have a page that will have a dynamically created number of Kendo NumericTextBox items (in a grid). Each of those has a unique ID, and I need to discover in the change event handler which box is being changed. It is impossible to pass a custom parameter to the event handler (otherwise, I would simply pass the relevant part of the ID as a parameter). The demos and documentation are completely unhelpful, as while they outline the change event handler, there is no code to show how to
Things I have tried:
this.id
this.name
this.attr("id")
$(this).id
$(this).name
$(this).attr("id")
e.target
The specific question is this: how can I discover the ID of the NumericTextBox that fired the change event?
The general question is this: where can I find documentation on the properties and methods of the event argument parameter?
Thanks.
Things I have tried:
this.id
this.name
this.attr("id")
$(this).id
$(this).name
$(this).attr("id")
e.target
The specific question is this: how can I discover the ID of the NumericTextBox that fired the change event?
The general question is this: where can I find documentation on the properties and methods of the event argument parameter?
Thanks.