I've run into an issue with the noRecords functionality. We have a Kendo tabstrip with two tabs - one grid on each tab. The user can add records in either of the grids which could result in a change to the data behind the other grid. So adding a record in Tab1 - Grid1 will cause Tab2 - Grid2 to be refreshed. If this happens and then the user changes tabs to Tab2, then Grid2 shows the new data but still shows the noRecords template as well. I've traced this down to the _renderNoRecordsContent() function. In that function, the logic only runs if the grid's wrapper is visible:
_renderNoRecordsContent: function() {
var that = this;
if (that.options.noRecords && that.wrapper.is(":visible")) {In my situation, the non-active tab fails this wrapper visible check. So when rebind a grid programmatically on a non-active tab, the noRecords logic won't fire. Is there a good way around this? Or is the :visible check maybe a little too aggressive of a filter?
Thanks for your help!
Regards,
Brian

Hi there,
I have a Telerik window opened on page load based on server side variables. However, I don't want this window to display for mobiles - for other site controls I apply the bootstrap 'hidden-xs' class to the control to not render it, but this doesn't work on the Kendo Window control. How can I achieve this - my window is drawn out by server side code which knows nothing about the browser dimensions?
I also tried setting the .Visible property to false and then showing it on the Open() event based on some jQuery - but this didn't work because the Open() event doesn't get triggered if the .Visible property is initially set to false.
Please can you advise how I can go about achieving my requirements?
Thanks, Mark
Hello,
could someone help me figure out where am I going wrong: http://dojo.telerik.com/eKEye
Double clicking an event for the first time brings up the correct event, however upon closing the window and reopening it for a second time it brings up a completely different event. For instance double clicking any event on August 12th will bring up that event, but if one closes the window and reopens it the editor has a different event.
I am fairly certain the problem is with the snippet below, any thoughts on what I am missing? Thanks!
$scope.sched.setDataSource(new kendo.data.SchedulerDataSource({ data: items}));
We are attempting to implement grid with sorting, and we've found that when we sort, then click the add button, the new row ends up as the last row on the last page, if the sort happens to send it there because of its empty columns. It ends up causing validation problems, but the culprit is never shown on the screen, and we're worried that will be confusing for the users. We were wondering if this was an existing bug, or if there was some workaround to keep the newly inserted row at least somewhere in sight after it is first added.
Thanks
Is it possible to call a javascript function (formatData) inside the for loop in the template, inside the ## , like below..
<script id="javascriptTemplate" type="text/x-kendo-template"><ul># for (var i = 0; i < data.length; i++) { #<li>#= formatData(data[i]) #</li># } #</ul></script>
Hi
While uploading an image I send a lot of image metadata from a form by attaching the data to e.data in the upload event.
Now I would like to add an array of keyword id's with the usual POST serialization like: keyword_id[]=143&keyword_id[]=211
but all I get is a serialization like: keyword_id[] = 143,211,....
Is there a simple hack to achieve that?
Regards
Alex
Hello, I have a issue about resize columns in grid.
If I set four fields in columns like this:
columns : [
{field : "id", title : "id", width : 150 },
{field : "index", title : "index", locked : true, width : 150 },
{field : "name", title : "name", width : 150, hidden: true },
{field : "date", title : "date", width : 150 }
]
then set resizable to "true", I can resize column "id" and "index" normally but I can't resize column "date" (seems it's after a hidden column).
Is this a stander rule of Grid or TreeList?

Hello,
I have this problem: using a kendo mvc tabstrip, in each tab load content using LoadContentFrom, loaded different views, but in each of these have included a menu toolbar, using Html.RenderPartial ("~ / Views / Toolbar.cshtml"); .
The problem is that only in the first tab loaded, the toolbar is visible, the other tab is not visible, and there aren't errors in the console or in the application.
I think it is a problem related to the fact that the id of the toolbar is the same, but I'm not sure, in any case I would not know how to solve it.
Someone can you help me?
Thanks, Marco