Questions tagged [kendo-observable]

Part of Kendo UI framework and provides support for firing events.

Observable is a Kendo UI () component.


Related tags

21 questions
0
votes
1 answer

Kendo Observable Change event

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…
SantyEssac
  • 789
  • 2
  • 19
  • 47
0
votes
1 answer

Multiple grouping in kendo ui stacked bar chart

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…
Athina
  • 533
  • 5
  • 20
0
votes
1 answer

adding custom function into kendo observable array

How do I add custom or extend kendo observable array ? JS fiddle : http://jsfiddle.net/balarvs/mctyswh2/3/ $(document).ready(function () { /* var ar = [ { id: "10" }, { id: "12" }, { id: "20" } ]; */ if (![].getById) { …
0
votes
1 answer

KendoUI - UI not refreshed after extracting repeating functions

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,…
nativehr
  • 1,131
  • 6
  • 16
0
votes
1 answer

Kendo DataSource, AngularJS - undefined property

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…
Christos Baziotis
  • 5,845
  • 16
  • 59
  • 80
0
votes
1 answer

KendoUI Template with Observable with NumericTextbox

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…
1
2