I have a fully working grid that I can filter per. column , that is you can filter by each column with say "contains" text.
Im wondering if there is a way for me to initialize that with path variables. f.e.
http://localhost:54000/home/index?title=something&name=othername
and then the filter in the title column would have its filter text = "something" and the column name would have the filter text = "othername" etc.
I have a few columns.
Any ideas on how to do this ?
I have a index action in home controller that can reiceive these filter strings, but I dont know how to "set" them in the grid.
I could possibly send them into the view in the viewbag.
Regards,
Emil

I have implement grid finally. Previously I could do it with less effort but now by using angular js, it has become really painful. I have posted code. I have my api to load data and api expects parameters. I cannot change api's parameter to make it inline with the kendoGrid's request object. So I have created own view model and assigned the required parameters.
Current status:
-Data is rendered in the grid.
-Pagination works perfectly.
-Sorting also works but sort is not initialized on one click. I am wondering if there is change function for sort option like it has for pageable. Since I have assigned sort's values to my viewmodel in change() under DataSource, this changes the viewmodel's sort value after grid load. This is of no use for the first time. I have no idea where I am suppose to implement that....
Problems to be addressed:
-I would like to implement the custom filter on the grid rather than the one provided by the grid itself.
-and the sorting problem as mentioned above.

Hi I have an ajax call which returns a json string which consists of -
"{"d":[{"path":"/","e_type":"d ","text":"/"},
{"path":"//SQL","e_type":"d ","text":"//SQL"},
{"path":"//SQL/SourceClips","e_type":"d ","text":"//SQL/SourceClips"},
{"path":"//SQL/SourceClips/kjpDNxHD145_MC403.mov","e_type":"f ","text":"//SQL/SourceClips/kjpDNxHD145_MC403.mov"}]}"
I am trying to format this so there are 3 folders and one file inside the 3rd folder in the tree view. I want to use a loop so i can reuse this for any data I return.
Currently that is fine as far as printing each item on separate lines but i am trying to nest the last item into the third item.
Any help would be very appreciated.
I have a fully working grid that I can filter per. column , that is you can filter by each column with say "contains" text.
Im wondering if there is a way for me to initialize that with path variables. f.e.
http://localhost:54000/home/index?title=something&name=othername
and then the filter in the title column would have its filter text = "something" and the column name would have the filter text = "othername" etc.
I have a few columns.
Any ideas on how to do this ?
I have a index action in home controller that can reiceive these filter strings, but I dont know how to "set" them in the grid.
I could possibly send them into the view in the viewbag.
Regards,
Emil

Is the scheduler is supposed to work on iOS?
This demo (demos.telerik.com/kendo-ui/scheduler/index) is entirely non-functional in iOS7 and iOS8 as the tap and double tap events are being ignored. Is there a way to set up a scheduler that works on android, iOS, and Windows desktop? If so, how would you set that up?
Hi,
I have an MVC grid view and I'm setting the current sort value of the grid programatically (similar to http://stackoverflow.com/questions/13863111/kendoui-programmatically-setting-grid-sort). I don't wish to actually sort the grid at the time I set the sort so I'm doing something like this
var grid = $("#ServiceAuth").data('kendoGrid');
grid.dataSource.options.sort = [{ field: "AuthType", dir: "asc" }];
and then when I do actually want to sort the grid:
grid.dataSource.sort(grid.dataSource.options.sort);
Data-wise this sorts the grid correctly, however the new sort isn't reflected on the indicators at the top of the grid. Is there a way to do this so the grid reflects the data sources sort property?
Thanks in advance for your help
hi,
I'm trying to sort the data in my bar chart and there is a problem with the chart result. The result inside the chart after sorting is not tally with the original data.
Here is my code in fiddle http://fiddle.jshell.net/seqyee/eku39yj8/