Hi,
I have written as following for creating the Schedule
dataSource: {
batch: true,
transport: {
read: {
url: "http://localhost:2237/api/values/GetSchedule",
dataType: "jsonp"
},
update: {
url: "http://demos.telerik.com/kendo-ui/service/tasks/update",
dataType: "jsonp"
},
create: {
method:"post",
url: "http://localhost:2237/api/values/SaveSchedule",
data: ,
contentType: "application/json;charset=utf-8",
dataType: "json"
},
destroy: {
url: "http://demos.telerik.com/kendo-ui/service/tasks/destroy",
dataType: "jsonp"
},
parameterMap: function (options, operation) {
if (operation !== "read" && options.models) {
return { models: kendo.stringify(options.models) };
}
}
},
in the above in create section how can i pass the object to the api .
In Api
public void SaveSchedule(Schedular callback)
{
}
here Schedular is a class consisting of all properties with same name in the ui.
whenever i have saved the data , in the api it shown as callback null.
Can you please provide me the solution for this.
Thanks,
We have a grid that was initialized by table and now when we try to export it to excel the numeric columns are showing up as text in the generated excel spreadsheet.
Is there a way to convert these to numbers and format them appropriately when exporting to excel?
Hi,
is there a multiselect with an option to add free text values ?
Hi,
Is it possible to achieve multi select filtering in row filter mode. What we are looking for is a multi select dropdown as the control in filter row, when there is a finite number of values to filter like statuses.
Thanks
Vijith
I have a PivotGrid and a PivotConfigurator with a splitter. Now i want to set the height of both to 100% but can't get it to work.
I tried to do this like in your demo:
http://dojo.telerik.com/OSEco/6​
But that doesn't do the trick.
Here is my code:
http://dojo.telerik.com/UvUFi
I have set
html,body,form,fieldset,table,tr,td,img { height: 100%; margin: 0; padding: 0; font: 100%/150% helvetica, calibri, sans-serif; overflow: hidden;}and
"<div id=\"horizontal\" style=\"height:100%; border:0;\"><div id=\"configurator\"></div><div id=\"pivotgrid\"></div></div>"in the function "showGrid" (there is also the initialisation of the pivotgrid and the configurator aswell as the splitter).
What am i doing wrong?
I want the pivotgrid and the configurator to fill all the height they get from the parent splitter and the splitter should fill all the height that it can get.
In Internet Explorer 10, while we are add one row using "Add" button, the row will be added on the last position in the grid instead of top of the grid.
Hi,
We need check box selection functionality for the grid, with persistence of selection across pages. The following example in 'How To' section gives a way to implement it.
http://docs.telerik.com/kendo-ui/web/grid/how-to/Selection/grid-selection-checkbox
However when we implement it in our project this is going to be a default selection mode for most of the pages.
Do you plan to provide this as a selection mode option in the grid in coming releases? If yes when will it be available.
Thanks,
Vijith
Hi,
how can I prevent that grid.addRow sets the focus into my grid?
Thanks