I'm attempting to use the Kendo UI DataSourceResult with my Kendo UI Grid using the code found here.
I'm not using ASP.NET MVC, but rather VB.NET with ASP.NET Web Forms and Web API on the backend. I understand how the DataSourceResult object works, however I'm having trouble figuring out the lines of code at lines 19-21. Here is the code in C#:
DataSourceRequest request = JsonConvert.DeserializeObject<DataSourceRequest>(// The request is in the format GET api/products?{take:10,skip:0} and ParseQueryString treats it as a key without valuerequestMessage.RequestUri.ParseQueryString().GetKey(0));and the code equivalent in VB.NET:
' The request is in the format GET api/products?{take:10,skip:0} and ParseQueryString treats it as a key without valueDim request As DataSourceRequest = JsonConvert.DeserializeObject(Of DataSourceRequest)(requestMessage.RequestUri.ParseQueryString().GetKey(0))Whenever I execute the code I get a System.ArgumentOutOfRangeException. Debugging the code the requestMessage.RequestUri.ParseQueryString().GetKey(0) returns "take" which is what I'd expect, as that's the key of the first parameter. Using Fiddle I can see that the Grid sends the RequestUri of "http://localhost:53786/api/object/4?take=20&skip=0&page=1&pageSize=20". What do I need to do to get the code working correctly with my Grid and API?
after updating to kendo ui 2015 Q2 to higher versions,
I'm facing issue as specified above
here is the example .
Please help us to fix this issues
http://stackoverflow.com/questions/38478493/cannot-read-property-wrapper-of-undefined-with-kendo-angular.
Note: why wrapper undefined error in kendo.
When scrolling the grid horizontally with the arrow on the sides, the movement is very slow. On longer column or more rows, it slows down even more. Whereas While moving by dragging the slider with the mouse, it moves fine.
Kindly provide me with a solution to fix this horizontal scroll issue.
I'm trying to streamline the template information on my barchart. It is just not displaying the information I would like it to relay to the user in a streamline fashion. I have a demo at http://dojo.telerik.com/@dhighfield/AFEbu/2. I'm trying to have it display something similar to the included png files. I do not want the template to display items that have zero values associated with it. I also am trying to remove that top Code information and replace it with the Code Description. I've tried series and category and other implementations and this is probably the closest I ever got to what I am looking for. Can this be accomplished?
As always thank you for your time.
public class person{ public int id {get; set;} public List<int> accountIdList {get; set;} <br>}
Sample: http://demos.telerik.com/kendo-ui/m/index#mobile-view/zoomable
If you view the above link in IE11 maximized at a high resolution (such as 1080p or 4K), the touch-based zooming and scrolling will not work like other browsers. Is there a workaround for this, or is this not supported in an older browser like IE11?
Hi
I have problem with kendo.drawing.exportImage. When I call kendo.drawing.exportImage occur error "Uncaught RangeError: Maximum call stack size exceeded".
When I Export to PDF ? every thing is OK.
I made example with this problem https://jsfiddle.net/j23yj7yx/. Please check this issue.
Regards
Peter
Hi,
I am using Hierarchical Grid with checkbox. I want to check all child records when parent row.
From parent Grid, I got checked employeeID and then retrieving the child grid.
var childGrid= $("#childGrid"+employeeID).data("kendoGrid");
var checkboxItems=childGrid.items().filter(":has(input:checkbox)");
$(checkboxItems).prop('checked',"checked");
But its not working. Appreciate any help.
Regards,
Sanjay