hi, i want to modify grid column format, i do it, but didn't work :
var grid = $("#grid").data("kendoGrid");
grid.columns[1].format = "{0:C0}";
sample is here
Thank a lot

Hi,
I'm using kendo grid with resizable and scrollable on. The problem is when i double click the resize handle, the column gets resized but the scroll position changes and i have to scroll back to the resized column to see it.
http://dojo.telerik.com/oNOPe
Any help would be really appreciated.
Thanks
I am trying to filter an Angular ComboBox with a dynamic set of filters. However, when I add more than one filter, the combobox is empty. I have tried setting this up on one of your examples, and still cannot get this to work. Here is the code I wrote:
<div id="example" ng-app="KendoDemos"> <div class="demo-section k-content" ng-controller="MyCtrl"> <div style="padding-top: 1em;"> <h4>Remote data</h4> <select kendo-combo-box k-placeholder="'Select product'" k-data-text-field="'ProductName'" k-data-value-field="'ProductID'" k-filter="'contains'" k-auto-bind="false" k-min-length="3" k-data-source="productsDataSource" style="width: 100%" > </select> </div></div></div><script> var filters = []; filters.push({ field: "CategoryID", operator: "eq", value: 4 }); filters.push({ field: "ProductID", operator: "eq", value: 1 }); angular.module("KendoDemos", [ "kendo.directives" ]) .controller("MyCtrl", function($scope){ $scope.productsDataSource = { type: "odata", serverFiltering: false, filter: { logic: "or", filters: filters}, transport: { read: { url: "//demos.telerik.com/kendo-ui/service/Northwind.svc/Products", } } }; console.log($scope.productsDataSource.filter); })</script>If I remove either of the filters, the ComboBox displays exactly as expected. What am I doing wrong?
Thanks!


Hi,
i have a grid which displays and updates the data. I have implemented paging with virtual scroll. I am facing issue where the records on the grid doesn't match with page number.
Ex- If you scroll the grid or click on the bar below (attached screen shot) order id-10256 shows page as 11-15 but it is 6-8 ie 9th record.
May be because of this mismatch, when i edit a row and try to save, it doesn't retain the page.
Sample js i have created only for display of records. Please suggest , if i need to do anything for saving and retaining the page for saved record.
http://jsfiddle.net/Voswal/u1kwuqsu/
Thanks


