I have a single data source but I need to show the same data on different views, with custom filters, so the data will be presented according to my needs.
I implement my page using MultiSelect controller, I request the data by using ajax request. The data item number is too large, so I want to implement a filter on the client side
1. The total select options are 10000.
2. By default in MultiSelect controller show 500.
3. When type in MultiSelect input controller, can dynamic filter in the 10000 options and show at most 500 in the options.
There is no example to do this, but there is a similar example to do filter on server side. Can you show me a example?
I like the new Scheduler,
I would like to change the date format in the pop up. so i try to create editable template ,
and my question how to add my recources input and All day event check box in that template ? I only know how to add the start and end time from this example.
Hello,
i'm using multiselect with an id as DataTextField instead of a string value, When i try to search for a id in my multiselect i get a error "".toLowerCase is not a function i'm guessing this is because i use id instead of string. Can i work around this somehow?
i saw in an older thread (http://www.telerik.com/forums/change-icon-in-chart-s-legend), that the option of changing the icons/markers in the legend is under consideration to be implemented.
has this been done? i have a chart with 3 different kind of series and each series has its on marker - but same colors for comparison.
at the moment the legend icons now have the same color as well, which is hard to distinguish - thats why i would need the same marker in the legend like in the chart it self for each series.
We would like to display chart data outside the plotted area that vertically lines up with the corresponding category, for example displaying the time remaining above the categories. Please see attached image for further clarification.
We're currently using Kendo MVC version 2014.1.318
How can we achieve this? - I've been looking for a solution for this for 2 days now :(
I am having Entity Framework Serialization Circular reference problems when attempting to bind to my Kendo UI grid. I found the documentation about how to deal with it here:
I have now implemented that change on my controller and am passing an anonymous type collection to my view. However now at runtime, when I try to look at my page, it immediately throws an Exception stating
"CS1660: Cannot convert lambda expression to type 'string' because it is not a delegate type"
Below is a snippet from my grid and controller. Property3 is the one it is complaining about, which is the one I am using to bypass the object in my anonymous type collection.
The JSON is built up like the following:
var collection = result.ToDataSourceResult(request, c => new
{
Property1 = c.Property1
Property2 = c.Property2
Property3 = c.EntityFrameworkObject.Property3
Property4 = c.Property4
});
As far as I can tell, this follows the example given. Why am I getting this "CS1660: Cannot convert lambda expression to type 'string' because it is not a delegate type" error and what do I need to do to get rid of it?
The only other thing I can think of is to remove the "My.Namespace.To.My.EntityObject, because there is no "Property3" on that object, however the compiler complains if I don't specify a type in the <> .
I have a Kendo grid set up with ".Editable(editable => editable.Mode(GridEditMode.PopUp) ) "
When I click the edit button in the grid , the screen pops up as normal. Properties are set correctly, however when I alter a property and save, I get the error below.
0x800a138f - Microsoft JScript runtime error: Unable to get value of the property 'data': object is null or undefined
This error is happening in the "Kendo.all.js" file. Here is the relevent javascript:
var that = this,
parameters,
----------------------------------------------------------------------------------------------------------------------------------------------------------
operation = that.options[type], //**** the operation gets set to 'Undefined' by this line and fails on the line below. *****/
-----------------------------------------------------------------------------------------------------------------------------------------------------------
data = isFunction(operation.data) ? operation.data(options.data) : operation.data;