I have set the value for groupable as true, even then I am not able to group it. When I drag the column header nothing happens.
I am using jquery version as 1.8.3. I tried with jquery.1.9.1.min.js
Please if anyone can help me on this.
Related
I have a KendoUI Grid that holds records. One of the values in a record is a boolean that I am using to show/hide a command (delete). I was trying to follow the instructions here:
http://docs.telerik.com/kendo-ui/api/javascript/ui/grid#configuration-columns.command.visible
I then realized, if you click on the "Preview" it doesn't even work for them. I know I can use a template to set the class of the div tag and then hide it with some jQuery, but would rather do it with their built in feature...if it even work. Has anyone had any luck with the command visible command?
The link is working as expected now. I am also pasting a Dojo just in case:
Example
I'm trying to use a kendo.data.ObservableArray as data for data source of the grid. It shows ok. When edit inline, change a field, then cancel, the values are changed. When clicking edit, then click edit on another row, the last one remains in the edit mode. Sometimes cancel not work. On the array it works as expected.
I took the Kendo UI Demo, http://demos.telerik.com/kendo-ui/grid/editing-inline, to reproduce the issue. Here is the issue: http://dojo.telerik.com/uLiCi/2
Does anyone have any idea why so strange behavior?
In my opinion, it should work with both, array and observable array.
Thanks in advance
It is very easy to get bootstrap multiselect listbox's selected values using javascript like this
$('listbox1').val();
But I want to access it from code behind.
You could probably get more/better assistance by posting some of your code or what you have tried.
However, this might put you in the right direction?:
Bootstrap Multiselect Get Selected values on HttpPost
I tried to set the cascadeFrom option like this: $("#itemQty").data("kendoDropDownList").setOptions({ cascadeFrom: "category" });
setOptions() is woking for other options like template but not for cascadeFrom. Anything else that i need to perform except refresh(). See the example at jsfiddle.net. Here I tried to bind the third kendo dropdown with the first one.
It seems that
$("#itemQty").data("kendoDropDownList")._cascade();
works as you want after you set cascadeFrom by setOptions() method. However it's private method and can stop working in futher versions of Kendo.
Updated fiddle: http://jsfiddle.net/1v76Lg9f/5/
I need a grid on an MVC3 Razor page that will have to load by JSON or AJAX call. I need this grid to be editable as well.
Also I need the grid to have the ability to have the first 6-8 columns frozen. I looked at the example on Codeproject.com and I couldnt get it to work. My scrollbars would show up but couldnt get the columns to freeze.
I have been working on this using Telerik grids, but it doesnt have the ability to freeze columns by default in a razor setting.
Does anyone have any suggestions on how to implement this or where I could look for some more information?
Try jQuery EasyUI http://www.jeasyui.com/documentation/datagrid.php
I did initially suggest jqGrid: http://www.trirand.com/blog/
but apparently it's a faff to get frozen columns using it.