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
Post a Comment