Will the treelist grid control support footerAttributes at some point? Is there a work around if I want to style the footer a certain way (e.g., background-color:white). I've tried footerTemplate, but it only styles the content of the template and not the entire cell.
Thanks in advance

<div id="routes"> <input id="route-value" data-role="maskedtextbox" data-value-update="keyup" data-bind="value:route" /> <h3 data-bind="html: route"></h3></div><script> var model = kendo.observable({ route: "Initial value" }); $(document).ready(function () { kendo.bind($("#routes"), model); });</script>Hello there
Maybe this is a known problem, I couldn't find this case in the Internet / forum here. I want to bind a MaskedTextBox Widget to a HTML element:
<input id="numbertest" value="555" class="numericBox" />
The id element "numbertest" is not available after loading the page. Thats why I added a class to the id element so it will be affected as soon as it is created. The id element is part of a Kendo UI template. In the ready function I added therefore:
$(".numericBox").kendoMaskedTextBox({
mask: "000"
});
And of course I need a valid class in the header:
.numericBox {
font-size: 20px;
}
Now the weird behaviour: The font size inside the element numbertest is set to 20 when the template is created but its not a MaskedTextBox (I can enter anything). To be sure its not only a MaskedTextBox problem I also tried to attach a NumericTextBox but that also wont work. Thats why I think its a general problem. I can only make it work when creating the numbertest element before the ready function is called. Then I'm able to bind the element numbertest to a MaskedTextBox by classname (and of course directly by accessing it by $("#numericBox"). ...
So my question: Is there a way to attach a Widget to a html element even if its not created after page is loaded (but later on by f.e. a Kendo UI template)?
Regards
Hi,
In the kendoDateTimePicker I have found that if you click a date that is not in the current month, the date format option is not applied.
If I am in January and click the 1st February then the date is formatted incorrectly in the input part of the control. Dates in January format as specified in the format option. It is formatted as below.
Mon Feb 01 2016 14:30:00 GMT+0000 (GMT Standard Time)
Does anyone know how I can get around this or is it a bug?
See the attached screen shots with the problem date highlighted.
Thanks
Kenny
var parentRow = $(input).closest('.k-detail-row').prev('.k-master-row')[0];var parentGrid = $(parentRow).closest('div.k-grid').data("kendoGrid");var parentDataItem = parentGrid.dataItem($(parentRow).closest('tr'));parentDataItem.set("QTY", newParent.QTY);parentGrid.expandRow(parentRow);How can I delete and update a dependency in Gantt?... What actions should I take?.. i don't see buttons (for delete) or forms (for edit)
Also... this is correct for the Gantt's functionality?
<div id="URLEliminarDependencia" data-request-url="@Url.Action("EliminarDependencia", "EventoProgramadoes", new { IdCronograma = ViewData["IdCronograma"] })"></div>
var dependenciesDataSource = new kendo.data.GanttDependencyDataSource({
transport: {
read: {
url: $('#URLObtenerDependencias').data('request-url'),
dataType: "jsonp"
},
update: {
url: $('#URLActualizarDependencia').data('request-url'),
dataType: "jsonp"
},
destroy: {
url: $('#URLEliminarDependencia').data('request-url'),
dataType: "jsonp"
},
create: {
url: $('#URLCrearDependencia').data('request-url'),
dataType: "jsonp"
},
parameterMap: function (options, operation) {
if (operation !== "read") {
return { models: kendo.stringify(options.models || [options]) };
}
}
},
Controller:
public JsonResult EliminarDependencia(int IdCronograma)
{
var models = this.DeserializeObject<IEnumerable<GanttDependencyModel>>("models").ToList();
---more code---
return this.Jsonp(models);
}
Hi,
I'm trying to use razor to create the kendo grid....
I just downloaded the trial version and I can't find the kendo dll inside the package at is saying in the forum...
The path "wrappers/aspnetmvc/Binaries/MVC5" does not exist in the package that I got...
tha name of the package which I download is "telerik.kendoui.professional.2016.1.112.trial (2).7z"
I'm just trying to follow this tutorial: http://docs.telerik.com/kendo-ui/aspnet-mvc/asp-net-mvc-5
Where can I find it?