cancel
Showing results for 
Search instead for 
Did you mean: 

Ui5 tree

Former Member
0 Kudos

HI,

How should I remove the tooltip from the tree entry ?

when you hover on the entries you will get tooltip with text which I want to omit

JS Bin - Collaborative JavaScript Debugging

Thanks,

Miley

Accepted Solutions (1)

Accepted Solutions (1)

former_member182862
Active Contributor
0 Kudos

Hi Miley

I have added these lines to your jsbin

        $this.find(".sapUiTreeNode").each(function() {

          $(this).attr('title', '');

        });

in your onAfterRendering function

JS Bin - Collaborative JavaScript Debugging

Thanks

-D

Former Member
0 Kudos

Hi Dennis,

One last question

In case I dont need to use extend for tree and I want also to do this

for tree (which is not custom control) how would you do that ?

Best Regards,

Miley

former_member182862
Active Contributor
0 Kudos

The same manner, that's in the onAfterRendering function

Thanks

-D

Answers (0)