I want to get the Id of the newly created task after the task has been successfully created. So, I am trying to get use the 'RequestEnd' event of dataSource to check if the event is of type 'create' and if the task id has been returned.
Please see this snippet. and create a new task. It seems that there is no taskId present in the response.

When displaying a lot of events in the cell in MonthView, only 2 are being displayed and a button that displays the Day View with all the events. Is there a way to display all the events in MonthView?
Check the following scenario:
1. Go to: http://dojo.telerik.com/OmugE
2. Navigate to 14
of May 2013.
3. Add all day
events starting from 10 of May until the 14 of May.(No Title1, No Title2)
4. Add all day
event starting and ending on 14 of May.(No Title3)
5. Navigate to 14
of May 2013 and change the end date of NoTitle3 event to 17 of May.
(Make sure you
have marked the events as all day)
6. Only "No Title1" and "No Title2" are displayed and not "No Title3" (I know there is a button that will display all the events in Day View)

I need to create a custom GanttView for my gantt. I have seen the examples, but cannot find any examples for .NET MVC.
How do you add a custom view to a gantt in MVC?
Thanks,
Justin
I have a scheduler with multiple people's schedules on it, each person has their own event color on the scheduler. I have a multiselector that lets me filter who's schedules I see on the scheduler. However, I want to change the tabs of those I select from the multiselect to have a background color that matches their event color.
So far, I have <div id="nameDiv" style="background-color: #:data.color#">#:data.text#</div> in my tagTemplate field in my multiselector. All this does is add a background to where the text is at inside the tag, leaving the ends of the tag to be uncolored. I want the backgrounds of the entire tag set to specific colors not attached to the text inside the tag.
Does anyone know how to go about doing this? I was thinking if I could access the specific class that handles tag styling, but I cannot find what that is called anywhere...
I am using the Aurelia bridge and have issues when clearing the mullti select.
Clearing the selected values, by clicking the little 'x' to the right in the compopnent, doesn't seem to fire an event.
The API for the multiSelect describes the select/deSelect events but nothing for clear.
Am I missing something? Sholdn't it emit a change event?
Cheers,
Henrik Valerian

I have extended the Date Widget into my own implementation by following the online examples. All is working nicely pretty much.
The issue I have is when the Widget is initialized twice. We get this in production with some Anthem based controls which handle the postback and update (not Ajax).
But I can recreate this issue simply by having the date picker on a html page with a button that calls the initialize twice. I have created the following dojo example:
http://dojo.telerik.com/@andez2000/eHEZA/31
If you click the "Init Date Picker" button after you run the example, the width of the widget changes to 100% - not what I asked for... You can see this getting fired inside of kendo.
Is there a nice way not to reinitialize the date picker under these circumstances. Ideally if I could handle this inside of kendoExtendedDatePicker.init would be good.
Thanks
var viewModel = kendo.observable({
test: '123'
});
var myFailedView = new kendo.View('<span data-bind="text: test"></span> #: location.href #', { model:viewModel, evalTemplate: true });
var mySucessfulView = new kendo.View('##<span data-bind="text: test"></span> #: location.href #', { model:viewModel, evalTemplate: true });I would expect it to render a span with 123 followed by the current location of the browser. But it only renders the span. If I start with an empty template expression "##" it behaves as expected. Is that a bug or did I miss something in the documentation?
For reference see JsFiddle
Regards,
Kris
http://jsfiddle.net/9y36opsk/
