The grid does not associate the column headers with the data. The content/headers are in two separate tables. JAWS doesn't make the association when reading this. Is there a solution for this?
Dominik
Hi,
I am trying to build a portal where the application has several forms for a employee
The user will get access to the various forms using the menu items.
All the menu items are disabled on application load and user is shown a search page
When the user successfully searches for an employee, they will be able to access all the forms for that employee
Can you please advise how I can dynamically enable the menu items (only when user has searched and selected an employee)
Also, all the data is employee id dependent so the index actions will always need the id to load the relevant data for that page.
Can you please advise how to acheive this
I'd like a text element in a drawing to be clickable, going to a URL. How do I do this? I can't find any examples.
I have loaded the culture javascript file for 'es' and set the kendo's current culture as 'es'.
If I move the mouse over tasks on gantt timeline, I see the popup with dates formatted correctly (in 'es' format).
But the header text are just empty (week header, time header, etc.) and task titles are not shown on timeline.
Please see the attached screenshot.
Any help would be much appreciated.
It looks like for the "scale.labels" of a kendoRadialGauge, even when set to "visible:false", the space the labels would have occupied is still present in the gauge area? So for "outside" labels, there will be empty space outside the dial. For "inside" labels, the pointer shrinks to where the tickmarks would be if they were displayed, but does not cross the range arcs, which would be preferable in this case.
I tried setting labels.font to "0px Helvetica" to see if this would shrink the space consumed beyond the dial for "outside" labels, but it didn't seem to. There isn't any defined way to have label space completely absent for "outside", rather than just invisible?
Hi Guys,
I would like to use the Kendo grid with remote data virtualization. I also need to have a custom method for the transport.read property.
My grid is configured like this:
$(document).ready(function () { $("#grid").kendoGrid({ dataSource: { serverPaging: true, serverSorting: true, pageSize: 100, transport: { read: function (options) { // Get the template items, which could be products, collections, blogs or articles getTemplateItems().then(function (data) { options.success(data); }); } } }, height: 543, scrollable: { virtual: true }, sortable: true, columns: [ { field: "title", title: "Title" } ] }); }); function getTemplateItems() { var deferred = $q.defer(); smartseoEntityMapping.getEntityInfo({ mappedEntityType: mappedEntityType.Product }).$promise.then(function (data) { deferred.resolve(data); }); return deferred.promise; } }The problem is that the read method is only called once when the grid is initialized. It is not called when the scroll reaches the last item in the current visible set.
I suspect that the grid needs the total number of items but I cannot understand how to set the total number of items. Setting a method for the schema.total property does not work because the method is never called.
So I would like to ask you, is this scenario possible at all, to have the virtualization work with a custom transport.read method, which needs to be called
every time to get the next page of data?
Why I am using a custom read? Well I need to because my remote call involves setting authentication, etc...
Thanks
I have a number of Kendo grids which utilize detail templates. I'd like to add some animation for when the user chooses to expand the details.
Is there any way to add some animation such as a jQuery Easing ​for when ​the details show and hide?
For reference, we are using the MVC/​Razor helpers.
