Hi,
my customer like the kendo panelbar and has a wish:
Round edge and a little space between the titles, similar to the Accordion
Do you have some css code to adapt the appearance of the panelbar?
Dojo with the used bootstrap v3 theme: https://dojo.telerik.com/OzeMENIY
Best regards,
Peter
Hi all,
I try to set a default value for a numeric field. I can't figure out why it does not work.
I simply set default value this way : schema.model.fields.MyNumericField to {defaultValue : 9, type:"number"}.
All I get when I create a record is 0.
I join screenshot of entire schem model.
Thanks in advance for any help,
André.

I know how to use dynamic columns with kendo. You just load the data before and then add columns, but I am having hard time using template with them.
The template function has its own scope, and when generating the values,I can't get the kendo.htmlEncode(data.fieldValue).
Example
https://dojo.telerik.com/ujaqoNIp

Hello,
I have kendo mvvm grid which is grouped . How can i delete item from grid easily?
Below is code to delete item from grid i found from various sources, in that 'index' gives incorrect number after grid is inserted or deleted with other items later on
var tstgrid = $(e.currentTarget).closest("[data-role='grid']").data("kendoGrid"); $(e.target).closest("tr").trigger("click");var index = tstgrid.items().index(tstgrid.select());ImportPNRPricingViewModel.Tsts._data.splice(index, 1);
to insert we, use $.merge, 'ImportPNRPricingViewModel' is my observable and 'response' has new items
$.merge(response, ImportPNRPricingViewModel.Tsts.data());ImportPNRPricingViewModel.Tsts.data(response);

Hi,
in my case i have to implement cascading on 2 drop down boxes defined inside kendo ui Template . For example i have a category drop down box and on selection of category sub category drop down box gets sub categories of selected categories shown as options.
i couldn't find example in documentation for that. First , Is this possible?if so , could you please provide me syntax for that. Also i am using Kendo SPA example for 2 separate JS and Html files for code.
Thanks
Hi,
Is the kendo diagram available with react and angularJs2 ?