demo:
http://dojo.telerik.com/aDevo
Hello,
I've been asked to migrate an existing KendoUI grid to Kendo UI pivot grid.... before I was doing
.DataSource(dataSource => dataSource .Ajax() .ServerOperation(false) .Read(action => action.Action("LoadOperations", "InquiryOperations").Data("getData")) )How can I do this with pivot since the Transport helper doesn't support Data?
.DataSource(dataSource => dataSource .Ajax() .Transport(transport => transport.Read("LoadOperations", "InquiryOperations").Data("getData")))Thanks
Working with Kendo UI version 2016.2.504, I have tested two filtering method calls across the same odata-v4 dataSource:
1. via .filter() - gridStage.model.DS.filter(DSfilter()) results in:
/app/odata/vwgriddc_info?%24format=json&%24orderby=dc_name&%24filter=dc_id+eq+109&%24count=true
2. via .query() - gridStage.model.DS.query(DSfilter()) results in:
/app/odata/vwgriddc_info?%24format=json&logic=and&filters%5B0%5D%5Bfield%5D=dc_id&filters%5B0%5D%5Boperator%5D=eq&filters%5B0%5D%5Bvalue%5D=109&%24count=true
The former works perfectly; the latter fails to properly encode the filter in odata-v4 format and ignores the existing sort parameter.
I would prefer to render the return within the .query().then() promise, but have worked around the problem with .filter() and requestEnd/setTimeout.
Are there plans to update .query() to support odata-v4? Or, is there some other sort of work around to this issue.
Thanks!
Hello,
I have attached a picture to better illustrate my issue --
When viewing the scheduler on a tablet device, I have noticed that when i try to scroll up and down that the table the events sit on do not align properly with the times. When the scheduler first loads, everything seems to look fine. However, scrolling (as a touch event) causes the issue. Please advise?
Hi,
I'm trying to populate my grid using a .json schema but i'm facing a weird problem. I first collect the data and initialize the datasource, with both structures being exactly the same. When the grid is drawed it doesn't follow the order of both structures and it "randomly" loads the rows.
This start happening with 5 or more rows.
I think it's a problem related to how Kendo draws the grid in the DOM.
I'm using Kendo with Angular2:
@ViewChild("kendoGrid")
private kendoGridElement: ElementRef; this.kendoGrid = jQuery(this.kendoGridElement.nativeElement).kendoGrid(this.kendoGridOptions).data("kendoGrid");kendo.bind(this.kendoGridElement.nativeElement, data);
this.kendoGridOptions = { dataSource: { data: data, pageSize: pageSize, group: { field: "test", dir: "desc" }, schema: { model: { id: "code" } } }, sortable: true, groupable: false, scrollable: { virtual: false }, columns: [ { field: "shortText", title: "Name", headerTemplate: template1 }, { field: "valueAsString", title: "Value", headerTemplate: template2, }, { field: "category", title: "Type", headerTemplate: template3, }, { field: "tags", title: "Tags", headerTemplate: template4, template: template5 }, { field: "longText", title: "Description", headerTemplate: template6 }, { title: "Command", template: template7, }, { field: "isPinned", title: " ", width: "40px", template: template8 ], };
Hi,
we can't use the MaskedTextBox in our MVVM project because there's a bug when masking with only digits & spaces (for example the simple mask "999"). The mask won't work because a function from Kendo UI seems to expect a thousand or decimal placeholder. This can be easily reconstructed in the MVVM demo for the MaskedTextBox:
http://dojo.telerik.com/exIYe
I just changed the mask to "999" and it is not working any longer. As far as I can tell, no combination without a decimal or thousand placesholder seems to work. Except "000" for example also seems fine, but the number shown is not masked the right way.
Could you please look into this?
Regards,
Steve.


I have enabled hints on a Kendo Grid and they are all showing fine except the hint on one column. The column in the schema is "Message". As you can see from the attachment when you hover over that column you see a small oval shaped balloon instead of a hint.
I have removed the attributes for that column declaration in the grid to stop if from showing a hint at all but the strange balloon shows anyway.
Each row has a details row that can be seen when the user clicks the right facing arrow in the first column. In the div that shows the message column is shown. So maybe that has something to do with it.
Any suggestions would be welcome.
Thanks