Hi I've a Kendo grid with some data. When I try to call rebind it is not populating data even though I can able to fetch it from my db.
Here are the clear steps:
- Binding data by calling my function init()
- In my Init() I've datasource with read like this read: "/Emps/ShowAllEmps"
- First time it is loading data and I can able to see in the grid
- Now I've a text box in my page along with search button.
- I've entered some text and calling the same datasource like "/Emps/ShowAllEmps" with additional parameters
- When I click on search button, I can able to fetch data based on my input and I can able to see on the grid.
- Now when I click on reset button, I want to call the same datasource like "/Emps/ShowAllEmps" with clearing all parameters.
- Now my datasource can able to perform read operation and I can able to see the data as JSON object in my firebug.
- But the problem is now, it is not binding to my grid. Eventhough data is there in JSON object.
Any idea? or someone is having similar example can you post it? So that I can reffer.
Thanks