How can I know whether kendo grid rendering finished or not?
I want to do something after the grid was rendered, but there isn't a 'rendered' event, Any suggestions?
BTW:
If I init a kendoGrid with the following data source:
How can I show commandA when age<25, and commandB when age>25?
Thanks.
I want to do something after the grid was rendered, but there isn't a 'rendered' event, Any suggestions?
BTW:
If I init a kendoGrid with the following data source:
$("#grid").kendoGrid({<br> dataSource: [<br> { name: "Jane Doe", age: 20 },<br> { name: "John Doe", age: 30 }<br> ]<br>});How can I show commandA when age<25, and commandB when age>25?
Thanks.