How to get kendo combobox value in change event

I have 2 questions about the kendo combobox change event.

  • In the shift event, I want to get the selected value of this field.

  • I want to get a link to the parent element or the element itself.

How to do it? Feed here

Any help is greatly appreciated.

+7
source share
1 answer

Just use this.value();

 alert("value: " + this.value()); 

http://demos.kendoui.com/web/combobox/events.html

Edit:

For question # 2 - use this.element to get the element itself and this.element.parent() to get the parent element.

+22
source

All Articles