The relevant attributes are applied to the list item instead of the anchor tag of the Toolbar's dropdown
Both the current and the newly open tab redirect to the link
Only the newly open tab should redirect
Hello Andy,
Until this issue is resolved use the following workaround: $(document).ready( function () {
var li = $(".k-menu-popup").find("li");
li.each((ind,item)=>{
var anchor = $(item).find("a");
anchor.attr({
"id":$(item).attr("id"),
"role":$(item).attr("role"),
"target":$(item).attr("target"),
"data-overflow":$(item).attr("data-overflow"),
"data-uid":$(item).attr("data-uid")
});
$(item).attr({
"id":null,
"role":null,
"target":null,
"data-overflow":null,
"data-uid":null
});
})
});
Review the behavior of the workaround in this Telerik REPL.
Regards,
Stoyan
Progress Telerik