Hello,
sorry if this has been asked before, I tried searching the
forum but didn’t quite find the same problem I have..
So I made a table with KendoGrid and in the first column of the table I have icons for active
incident tickets and service requests. I want to use the KendoTooltip on the
icons inside the table cell.
I tried out this code snippet from here:
$("#grid").kendoTooltip({
filter: "td:nth-child(1)",
position: "right",
content: function(e){
var dataItem = $("#grid").data("kendoGrid").dataItem(e.target.closest("tr"));
var content = dataItem.Text;
return content;
}
}).data("kendoTooltip");
But the tooltip is applied to the whole cell, while I want to
use it on the individual icons inside the cell. I tried putting the icons
inside a new <div> in the template of the columns, like this (very
simplified):
var column = {
field: "IsAboutConfigItems",
title: "Incidents/Service
Requests ",
template: function (dataItem) {
var
result = "<div id=\“container\“> … <img>…</img> …</div>“;
return
result;
}
};
And the tooltip:
$("#container").kendoTooltip({
content: function (e) {
var result = "test"
;
//etc...
return result;
}
});
But it doesn’t work, there is no tooltip showing up at all but also no errors in DevTools. I’m not sure what I’m doing wrong?
I followed this example to add values to the multiselect without using a popup, but I noticed that whenever the multiselect loses its focus, the text that has been typed on it disappears.
I wish to avoid this behavior, since it would be annoying to a user to type something and click somewhere else and that value to be lost.
Is this possible?
Hello,
Auto Expand works normally for all Rows at the same Time.
But what I'm trying to do, is to let the Row in the TimelineWeek-View expand, where there is many Events in one of Rows Cells,
And only That Row should expand !
Is there anyway to achieve that ?
I have attached an img where you can see, a Row with only one Event and a Row NO Events have the same Height as the Row With multiple Events.
And That is exactly what I'm trying to avoid.
Thanks in Advance
Karam Ramadan
I checked the documentation for the API and am utilizing the open method
However when opening the calendar popup this way the keyboard navigation no longer works. The only way to select a date seems to be via mouse click.
The issue is re-creatable on the demo example below
https://docs.telerik.com/kendo-ui/api/javascript/ui/datepicker/methods/open
I have found I can programatically set a kind of focus using the code
setTimeout(function () {
var ev = $.Event("keydown");
ev.keyCode = 39;
$("#FromDate").trigger(ev);
}, 100);
But after this the keyboard navigation is still not active.
Is there a way to make this work?
I have added some fields with caption names like this:
location: { caption: "Butik" }
but the problem is that its not used for grouping
it seems like a bug to me, is there way around it?
https://stackoverflow.com/questions/31749074/kendo-pivotgrid-translation-bug