How to get value of kendo combobox in the change event

events, javascript, jquery, kendo-ui

Solution

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 element's parent.

Problem

I have 2 questions on kendo combobox change event. On change event I want to get the selected value of that combobox. I want to get the reference to the parent element or an element itself. How to do that? Fiddle is here Any help is greatly appreciated.

Original source