kendo ui - How to set kendoTooltip custom width with function? -


i want kendo tooltip custom width:

here code:

$(".tooptip_labell").kendotooltip({   position: "right",    animation: {       open: {         effects: "fade:in"         }}}); 

you can add 'width: 500' configuration. in case should below(i set value 150px.you may change whatever want.)

$(".tooptip_labell").kendotooltip({      position: "right",      width:150,      animation: {      open: {          effects: "fade:in"     }}}); 

Comments

Popular posts from this blog

javascript - Confirm a form & display message if form is valid with JQuery -

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

ionic framework - Meteor - Error: Failed to execute 'insertBefore' on 'Node' -