Unplanned
Last Updated: 29 Mar 2016 11:54 by ADMIN
ADMIN
Dimitar
Created on: 16 Sep 2015 06:23
Category:
Type: Bug Report
0
FIX. RadDataEntry - when the control is inherited the theme is not applied properly.
To reproduce:
class RadDataEntryCustomForm : RadDataEntry
{
    public override string ThemeClassName
    {
        get
        {
            return typeof(RadDataEntry).FullName;
        }

    }
}

Workaround:
class RadDataEntryCustomForm : RadDataEntry
{
    public override string ThemeClassName
    {
        get
        {
            return typeof(RadScrollablePanel).FullName;
        }

    }
}
0 comments