I have a kendo Obervable as follows:
var ViewModel = kendo.observable({
ID: 1,
TITLE: "SomeValue",
});
and then I have bound this as follows:
kendo.bind($(".bind-view"), ViewModel );
Now there is button on the page. When clicked I need…
I want to create a 100% stacked bar chart that will show status value duration ratio grouped by device and status type. Something like http://demos.telerik.com/kendo-ui/bar-charts/grouped-stacked100-bar.
I managed to make a partial solution based on…
I have a view model, which has several collection properties with some repeating logic.
I need to be able to add a new empty object, to remove an object, and to ensure that every collection has at least one object, and if it is the only object,…
I want to fill a grid with a complex json returned from a webservice. My json contains two things:
data: array with the records that will fill the grid
columns: array with the config(layout) of the grid
I have successfully filled the grid with the…
I have the following KendoUI template bound to an observable. When I push a new item to the observable array, how do I apply the kendoNumericTextBox to only the new item in the template?
If I apply by class, it has a strange effect of doubling…