Hi!
Is it possible to set tooltips on sub-items of a RadToolBarSplitButton?
The following pseudo-code doesn't seem to work, there's no tooltip on the added button:
Is it possible to set tooltips on sub-items of a RadToolBarSplitButton?
The following pseudo-code doesn't seem to work, there's no tooltip on the added button:
var btn = new Telerik.Web.UI.RadToolBarButton();
btn.set_value(navItem.ID);
btn.set_text(' My Text');
btn.set_toolTip('My Tooltip');
splitButton.get_buttons().add(btn);
Regards