Hi,
I’m getting some unexpected query parameters passed back to
the server when redefining some of the grid’s filter operators.
For example, if I customize the filter operators with the following:
filterable: { operators: { string: { "Contains": "Contains", "DoesNotContain": "Does not contain", "Equals": "Is equal to", "DoesNotEqual": "Is not equal to", "StartsWith": "Starts with", "EndsWith": "Ends with" } } },filter[filters][0][operator]=Equals
However, instead it sends the standard equals operator:
filter[filters][0][operator]=eq
The behaviour is as I’d expect for the other operators. e.g.
filter[filters][0][operator]=StartsWith
I only experience the problem with the equals, greater than
and less than operators.
Here is a jsfiddle demonstrating the problem. Of course the
filters don’t actually work as the server side code doesn't support the custom operators. You need to look at the requests sent to the server to see the problem.
https://jsfiddle.net/snowman611/6mnzbc1e/3/
Has anyone else had this problem? What am I doing wrong?
Thanks,
Andrew
Example: http://dojo.telerik.com/AQEWo
I am trying to get a sparkline to be consistent in the amount of space that it uses. The problem can be seen when a sparkline only has two points, it is significantly shorter than the sparkline with many points.
I would expect that the two sparklines be of equal lengths.

Hi
Is there any progress with supporting 24:00 time? (as described in this post http://www.telerik.com/forums/timepicker-does-not-conform-to-is0-8601-3-5-2-on-time-of-day-midnight-representations)
I have an application where I'm gathering customer data via Kendo UI spreadsheet with DataSource. One of the fields is a DateOfBirth which I need to capture in en_GB format: dd/mm/yyyy. Please see this JsFiddle as an example: https://jsfiddle.net/s4c87msq/3/
Following are the issues:
1. If you enter text "01/03/1999" into any column - text or number or date, it gets parsed as en_US date (so the content of the cell changes to "03/01/1999"). How do I stop a texrt field being parsed as a date?
2. I'm having to set the DataSource schema DateOfBirth field type to "string" because if it is set to "Date" I get an error when kendo tried to parse it on change: TypeError: e.indexOf is not a function
Can you please refer to the JsFiddle and let me know how do I get the correct date from Spreadsheet in the dataSource?
Many thanks.
I have the pivot grid hooked up to an OData data source.
I notice that the pivot grid is making requests such as
http://localhost:52652/odata/PO?$inlinecount=allpages&measuresAxis=columns&rows[0][name][]=strBuyer&rows[0][expand]=falseAre the URL parameters that it's using and the required return data format documented anywhere?