Questions tagged [kendo-tooltip]

The Kendo Tooltip is a Kendo widget that Customizable and themeable tooltip. Kendo UI Tooltip can be attached to any element. When you hover the element with your mouse or on external button clicked it displayed litter box next to target the element.

The Kendo tooltip is a Kendo-UI widget that can be theme able as well as allowing various customization.

  • Display other content than just the title, like inline footnotes or extra content retrieved via Ajax.
  • Customize the positioning, e.g., to center the tooltip above elements. Add extra styling to customize the appearance, for warning or error fields.
  • Tooltips are also useful for form elements, to show some additional information in the context of each field.

Resources

Related tags

73 questions
0
votes
1 answer

Kendo Grid tooltip at the end of row

I'm using a kendo grid and I want to implement an action bar when a user hover the row. I found the example solution. But I'm looking for showing the tooltips at the end of the row instead of the current hover column. So how can I get the last…
Xion
  • 452
  • 2
  • 6
  • 25
0
votes
2 answers

Show Kendo tooltip conditionally in angular 9

I'm trying to show a tooltip on one container class but only if a string variable is populated with some string. Currently, the tooltip is working and it displays the text contained in the string variable.
0
votes
1 answer

Kendo ui tooltip content return "e.uniqueSort is not a function" error

I'm showing tooltip on kendo grid column. When i return string in content in kendo tooltip i get an error: "e.uniqueSort is not a function". I can't find any solution for this problem. this is my code: gridMain.table.kendoTooltip({ filter:…
0
votes
0 answers

kendoDropDownListWithTooltip custom knockout binding

I want to create a custom binding to merge Kendo DropDownList and Kendo Tooltip. So I made this: ko.bindingHandlers.kendoDropDownListWithTooltip = { init: function (element, valueAccessor, allBindingsAccessor, viewModel, bindingContext) { …
Raptor
  • 392
  • 1
  • 4
  • 21
0
votes
1 answer

Knockout-Kendo: DropDown with Tooltip doesn't work

I'm using Knockout-Kendo bindings. I need to use DropDownList with Tooltip, but using both bindings in one control doesn't work. Anyone knows why and how to fix it? var ViewModel = function() { this.choices = ko.observableArray(["apple",…
Raptor
  • 392
  • 1
  • 4
  • 21
0
votes
1 answer

Kendo ToolTip in Kendo Grid to show a page By URL

I have a grid with first column having a template for columns: [ { field: "KedocTitle", template: "
Ofer Gal
  • 707
  • 1
  • 10
  • 32
0
votes
2 answers

Kendogrid tooltip on locked columns

I'm having an issue with the kendogrid and locked columns. When I try to add the tooltip on a locked column it nevers shows. I have used the filer setting to do it, $("#gridDataInput").kendoTooltip({ filter: "td:nth-child(2)", …
0
votes
1 answer

when setting content field to a div element.. having issues with attaching and visibility

Problem:I am assigning a div to the content property of a kendo tooltip... problem is, when I attached the tooltip... the div is sitting there, and the tooltip does not REALLY wire up until I hover over the element I attached it to... you can see in…
ttomsen
  • 848
  • 9
  • 15
0
votes
1 answer

Changing Kendo window title's tooltip at runtime

I wanted to find out how I can update the tooltip for the kendo window title that is updated at runtime. I am able to update the window title using this code: var dialog = $("#dialog").data("kendoWindow"); dialog.title("Hello"); The problem arises…
Suraj Nair
  • 561
  • 1
  • 8
  • 27
0
votes
1 answer

Shared Tooltip in the Chart Component doesn't appear

In the chart I wanted to have a shared tooltip from the multiple panes but it doesn't appear. The elements are only highlighted I leave below my code
jecabeda
  • 706
  • 1
  • 6
  • 11
0
votes
1 answer

KendoUI tooltip overflows window

I have a kendo tooltip for a field, that can contain a very long values. The default position of the tooltip is on the left of the field, however, if there's not enough space for a tooltip on the left, it automatically switches to the right. The…
0
votes
2 answers

Kendo tooltip content is not updated when angular model is changed

I have defined kendo tooltip in following way: Initially the content is ok, but when model.Description is changed and the site is not reloaded the…
0
votes
1 answer

KendoUI - How do I get an attribute value within `kendoTooltip()`

I'd like to receive the value of type of an input. Docs: KendoTooltip $("input").kendoTooltip({ content: function () { return '
' + this.attr("type") + '
'; } }); But I can't finy any way…
0
votes
1 answer

Kendo-UI Tooltip with interactive (clickable) content

I'd like my tooltip to stay open if the mouse is above the tooltip target or if it is above the tooltip content (which is loading dynamically), so that the use can move the mouse from the target onto the tooltip and click on links in the content. A…
C.List
  • 657
  • 8
  • 16
0
votes
0 answers

Uncaught TypeError: l.renderElement is not a function

I have a shared tooltip for my graph: $scope.kissaChart.setOptions({ renderAs: 'canvas', drag: onDrag, dragEnd: onDragEnd, zoom: onZoom, tooltip: { …
Kim Honoridez
  • 917
  • 2
  • 15
  • 28