Hello Dan,
Updating the title of the DropDownTree on each checked is part of the control's accessibility features and cannot be removed. If you want to remove the titles, you can still achieve it by handling the RadDropDownTree OnClientEntryAdded and OnClientEntryRemoved events and clear the title value like follows:
<telerik:RadDropDownTree RenderMode="Lightweight" ID="cboPermisiuneTree" runat="server" Width="100%"
CheckBoxes="SingleCheck" TextMode="Default"
OnClientEntryAdded="updateTooltip" OnClientEntryRemoved="updateTooltip">
</telerik:RadDropDownTree>
<script>
function updateTooltip(sender, args) {
var checkedNodes = sender.get_entries();
setTimeout(function () {
//set the main element tooltip with a small timeout so it happens after the built-in feature sets it
sender.get_element().setAttribute("title", "");
});
}
</script>
Regards,
Vessy
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.