Hi!
Please have a look at this demo: http://dojo.telerik.com/AWamE
Last 2 columns should behave the same. Only difference between then is the format specifier, once is '%' second is 'prc'.
But they are not. The '%' sees the column as percentage, so:
1. Multiplies the value I give with 100
2. When editing, % remains in place, even though in the second part it disappears. I would like to have it gone
Any ideas on how to make the % fields behave just like other format specifiers?
Thanks!

all,
I am using MVC scheduler and have created using a custom template editor. In the editor template, I set the end date via jquery based on parameters that the user selects. When I select to save the schedule is not updating correctly and show the default 30 minute. If I refresh the page I see the correct date. Right now I have it so after a save I refresh the page but that's not very efficient. If I manually edit the end date, it works correctly.
I am wondering if this is a bug or I maybe I am not setting the end date properly.
I did look at the sample on the how you can dynamically set the date and time. I know this is correct but doesn't seem to work in the .
Thanks in advance for the help,
-Max

Hi,
How can I bind to the expand or collapse event from code? I tried:
$("#collapsibleDiv").on("expand", function () {
alert("expand");
});
without sucess.
Kind regards,
Marco

Hi,
Currently the scheduler has Clone Events to demonstrates how to clone events in the Scheduler. But how we can copy and paste an event on scheduler.
Regards.

noRecords: { template: "nessun elemento" },This is my kendo grid with mvvm.
<div id="a"data-role="grid"data-no-records="templateNoRecords" data-columns="[ { 'title': 'ID', 'field': 'id' }, { 'title': 'ID', 'field': 'id' }
]" data-bind="source: products.source,"><script id="templateNoRecords" name="templateNoRecords" type="text/x-kendo-template"> Nessun dato trovato</script>noRecords: { template: "nessun elemento" }
I'd like to do this but with mvvm.
This is my kendo grid:
<div id="a" data-role="grid" data-no-records="templateNoRecords" data-columns="[ { 'title': 'ID', 'field': 'id' ,hidden: true }, { 'title': 'Nome', 'field': 'nome' }, ]" data-bind="source: products.source}"> <script id="templateNoRecords" name="templateNoRecords" type="text/x-kendo-template"> Nessun dato trovato </script> </div>
I have this code:
kendo.ui.Grid.prototype.options = $.extend(true, kendo.ui.Grid.prototype.options,{ noDataTemplate:"NoData", noRecordsTemplate:"NoData", noRecords:"NoData" });this code doesn't work!

