Completed
Last Updated: 11 May 2015 10:27 by ADMIN
ADMIN
Dimitar
Created on: 03 Apr 2015 10:18
Category: PageView
Type: Bug Report
4
FIX. RadPageView - in ExplorerBar view there is flickering when one scrolls.
To reproduce:
- Add RadPageView change the view  to ExplorerBar and add some pages with controls.
- Start the application expand all pages and scroll.

Workaround:
class MyPageView : RadPageView
{
    protected override RadPageViewElement CreateUI()
    {
        if (this.ViewMode == PageViewMode.ExplorerBar)
        {
            return new MyExplorerBarElement();
        }
        return base.CreateUI();
    }
   
}

class MyExplorerBarElement : RadPageViewExplorerBarElement
{
    protected override bool IsChildElementExternal(Telerik.WinControls.RadElement element)
    {
        return !(element is RadPageViewElementBase) && base.IsChildElementExternal(element);
    }
    protected override Type ThemeEffectiveType
    {
        get
        {
            return typeof(RadPageViewExplorerBarElement);
        }
    }
}
0 comments