Completed
Last Updated: 03 Oct 2019 11:43 by ADMIN
Release R3 2019 SP1 (LIB 2019.3.1007)
Patrick
Created on: 30 Sep 2019 15:54
Category: BreadCrumb
Type: Bug Report
0
RadBreadCrumb: The IsTextModeEnabled property does not affect the editor
Setting the property to false should disable editing in the control.
1 comment
ADMIN
Hristo
Posted on: 30 Sep 2019 16:04

Hello,

A possible workaround is to create a custom control and override the BeginEdit method of the main element: 

public class MyRadBreadCrumb : RadBreadCrumb
{
    public override string ThemeClassName
    {
        get
        {
            return typeof(RadBreadCrumb).FullName;
        }
    }

    protected override RadBreadCrumbElement CraeteBreadCrumbElement()
    {
        return new MyRadBreadCrumbElement();
    }
}

public class MyRadBreadCrumbElement : RadBreadCrumbElement
{
    protected override Type ThemeEffectiveType
    {
        get
        {
            return typeof(RadBreadCrumbElement);
        }
    }

    public override void BeginEdit()
    {
    }
}

Regards,
Hristo
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.