alessalessio
alessalessio

Reputation: 1234

Kendo Spreadsheet - Change event not firing

In Kendo Telerik UI documentation , Telerik claims that the change event has been added into the Spreadsheet component.

That event is not firing though.

Please check it out into this DOJO example: http://dojo.telerik.com/adEKO

--------- SOLUTION -------------

The syntax was correct, but i was using the wrong version of Kendo. This is the correct working case: http://dojo.telerik.com/adEKO/11

Upvotes: 1

Views: 1630

Answers (1)

Tony
Tony

Reputation: 66

Your onchange is a method but you are not using it as such. change: onchange, should be change: onchange(),

Got it to fire just fine after adding the Parenthesis.

Upvotes: 2

Related Questions