I would like the user to navigate to different page - if user clicks on a treemap cell ..
How to set the Redirection or Navigation to happen ?.
Using web app , aspx , vs 2015 , Kendo latest
1 Answer, 1 is accepted
0
Alex Hajigeorgieva
Telerik team
answered on 21 Sep 2016, 06:46 AM
Hello Sri,
I found the title of this thread a little confusing.There is no Kendo UI Tooltip mentioned in the question despite the title, so I will assume that the title was posted by mistake and respond regarding the Kendo UI TreeMap items in your question.
To navigate away from the Kendo UI TreeMap when a user clicks on an item you could use the jQuery wrap() method to wrap the item in an anchor tag upon its creation:
itemCreated: function(e){
$(e.element).wrap( "<a href='#'></a>" );
},
Documentation reference for the itemCreated event is available at: