Hi Andreas,
Generally, the decorator uses an additional element to simulate the styling of the checkbox and replaces classes of the existing input element. This requires an additional workaround that relates to the TreeView and the checkBoxElement() method.
You can add the new workaround below the other one:
Regards,
Danail Vasilev
Telerik by Progress
Generally, the decorator uses an additional element to simulate the styling of the checkbox and replaces classes of the existing input element. This requires an additional workaround that relates to the TreeView and the checkBoxElement() method.
You can add the new workaround below the other one:
Telerik.Web.UI.RadTreeNode.prototype.get_checkBoxElement =
function
() {
$ = $telerik.$;
if
(!
this
._checkBoxElement)
this
._checkBoxElement = $(
this
.get_contentElement()).find(
".rfdRealInput, .rtChk, .rtChecked, .rtUnchecked, .rtIndeterminate"
).get(0) ||
null
;
return
this
._checkBoxElement;
}
Regards,
Danail Vasilev
Telerik by Progress
Check out the new UI for ASP.NET Core, the most complete UI suite for ASP.NET Core development on the market, with 60+ tried-and-tested widgets, based on Kendo UI.