Frage

I have a Kendo ComboBox which binds to a remote service. I want to check the values fetched from the server during data bound, how can I do that?

function ComboBox_DataBound(e) {
    e.sender.value() // <--- this is not set yet
}
War es hilfreich?

Lösung

Inside the callback you can use

this.dataSource.data() 
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top