Grid Detail Template How to add tooltip and column header

1 Answer 347 Views
Grid
Jerry
Top achievements
Rank 1
Iron
Iron
Iron
Jerry asked on 15 Nov 2022, 02:29 PM

We are using the kendo grid and detail template.

Is there a way to do the following with the expand/collapse column?

1: Add a tooltip to the expand/collapse icon?

2: Add column header to the expand/collapse column?

 

1 Answer, 1 is accepted

Sort by
1
Accepted
Nikolay
Telerik team
answered on 18 Nov 2022, 10:23 AM

Hi Jerry,

You can utilize the Kendo UI Tooltip to add a tooltip to the expand and collapse icons. This can happen in the dataBound event handler of the Grid.

dataBound: function(e) {
              var tooltip = $(".k-hierarchy-cell").kendoTooltip({
                filter: "a",
                width: 120,
                position: "top",
                content: "Tooltip content!"
              }).data("kendoTooltip");
            },

Regarding the title of the expand/collapse column header, you can add it programmatically with jQuery.

dataBound: function(e) {
              $("th.k-hierarchy-cell").text("Title");
              $("th.k-hierarchy-cell").css('vertical-align', 'middle');
            },

Here is a Dojo demo I prepared demonstrating both approaches: https://dojo.telerik.com/aQiBiLOD

Let me know if you have any questions.

Regards,
Nikolay
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Tags
Grid
Asked by
Jerry
Top achievements
Rank 1
Iron
Iron
Iron
Answers by
Nikolay
Telerik team
Share this question
or