My list is having problems displaying new added items when bounded to grouped datasource.
When adding new items, the list shows the item itself as a group header.
I've attached an example showing it.
replace the attached file with kendoui.complete.2013.1.514.trial\examples\mobile\listview\databinding.html
you can see I've changed the original example: after 1.5 seconds i'm adding another item, and as you can see,
the item is shown as an header.
The same operation works fine on previous version.
I have created an online CodePen Demo: http://codepen.io/DrYSG/pen/wnDxL where I have a Grid bound to a KendoObservable 1-D array. The Array is meant to be (Item, Value) pairs. There are a number of clumsy things here that I would like to clean up.
Doing the lookup for the value and changing it involves hard constants (stateTable[1].Value = foo. Do I have to have a use an index table that translates integers to keys. I.e. var StatusKey = 0, TileCountKey = 1, etc. (then it would be stateTable[TileCountKey] = 2) Still seems clumsy.
This would be especially fragile, if the user could add and delete rows. (batch editing).
The KendoObservable.set() is not working for this example. So I am doing a manual trigger, which I saw in a post by Alexander Valchev, but I don't see document anywhere. This also feels a bit clumsy.
Why is there a scroll bar on my Grid?
Bottom line. It works now, but I want to know if there is something in KendoUI today, that would make this cleaner, and if not, do you have anything in UserVoice planned to fix this up?
I'm trying to set the background of a screen that only displays an image. I have tried a few things on the css but it seems I'm not using the correct class to achieve the background change. I want to set the background color to black since the default is white.
I have a tabstrip with two tabs. The first tab is a list of documents in a grid. The second tab is an upload control and these work perfect independently. I need to refresh the partial view grid though on the first tab click as the users will upload files on the second tab then I need the first tab to reflect the added files.
Hey,
Ive got a set of data which im using for a kendo line chart and it renders it fine, I use the same dataset on a stockchart (type: line) and choose the same baseUnit as the line chart and it crashes. It happens probably because there are too many point. Could this be the case that a simple line chart can handle that amount of points and the stock chart cant.
Regards,
Neil
I am new to Kendoui and have been setting up my own css sheet to modify minor elements of the the Kendo defaults and need to know the difference between roles and classes. I am familiar to the concept of class from using html coding, but I am new to the concept of roles. Could someone give an idiots brief to how the roles affect the layout and whether they can also be modified?
Many thanks
Hi!
I'm developing a Kendo Mobile App for which I'm using Charts and Grids contained in a ScrollView Widget. The problem is when I swype, the labels from the pie chart legend interfere because they are clickable. Is there a way to disable this functionality. Disabling the legend is not an option... The API reference doesn't mention anything about this. Please help.
I can see that the tab is selected, but ton content are not displayed. I think the tab do not extend. If I click on another tab, I see the selected tab momentary fadeout and then the new tab fadein.
Any suggestion?
Thanks
Hi,
I'm trying to user MVVM to bind to a TreeView and send in an array of ids and check the corresponding nodes. The recursive function works when I've expanded the root node. But it doesn't work initially when the root is collapsed.