Search code examples
kendo-uikendo-gridkendo-asp.net-mvc

Kendo grid how to pass additional parameter from java script


in telerik extenstion to pass additional data to ajax request I used

function onDataBinding(e)
{
    e.data = {argument : 4};
}

where e was div cointainer with data object inside, How can I do this using kendo ? I tried the same but for Kendo e arqument is sth totally different.


Solution

  • Finally i got the answer my own and it is :

    $('#grid').data('kendoGrid').dataSource.read({name:value})