I am currently using kendo UI and ASP.NET 4.0 (non-mvc) for a project, on my project each page will have a grid that will be populated with ajax call to the page method on that particular page.
The problem is that I canβt think of a way not to call all the grid fill functions on document.ready, except for creating a separate js file for each page. Is there a way that I could have 1 page, but be able to distinguish which one is loading and call the correct way to populate the table in 1 file so that this does not become a maintenance nightmare?
source share