Is there a way to manually change the width of a column client side? I am setting the width property to something and its registering but it does not display the new width until I do a hide/show column or another grid action. Is there a way to manually trigger this column size refresh?
Hi
I'm trying to use web SQL databases with kendo mobile datasources. My code is based on a Kendo Web example that works fine but there is no way to make it works on mobile version. It doesn't trhow any exception but it doesn't works. Anyone has do it? I attached my code.
Thanks
Can someone please help, we want to resize our KendoUI stock chart based on window resize (i.e. make it responsive). How can we redraw the stock chart when user changes to mobile device or resizes their browser window?
I get javaScript error when my model return nullable Int. I use MissingValues(ChartLineMissingValues.Gap) but this didn't fix the issue. I really don't want to show the line when there is no values. If I change my code to return zero it will show the Line at zero. this is not what I am looking for
Unhandled exception at line 35, column 17304 in http://localhost:28123/Scripts/kendo/2013.2.716/kendo.all.min.js
0x800a138f - JavaScript runtime error: Unable to get property 'value' of undefined or null reference
I have a problem with showing two modal windows:
after second window is closed the page is still covered & unavailable.
Test project is attached.
Please select "change password" in menu and click "change".
Then close opened popup and see that the first window is still covered.
Is it a bug with kendo window or I'm using it in the wrong way?
Do you have any sample code to integrate knockoutjs with the grid?
I got the dropdownlist example working and was easy.
Just can't figure out how to follow the same method with a Datasource with the grid.
I would like to do something like the following again like with the DropDown list
$(function () {
$.get("GetJsonData", "", function (data) {
for (var i = 0; i < data.length; i++) {
var itemNew = new Item();
itemNew.Id = data[i].Id;
itemNew.Name = data[i].Name;
viewModel.teams.push(itemNew);
}