Completed
Last Updated: 17 Feb 2015 17:57 by ADMIN
ADMIN
Stefan
Created on: 22 Dec 2014 06:51
Category: GridView
Type: Bug Report
0
FIX. RadGridView - missing TableElement.RowDragHint in multiple themes
Workaround: 

        RadImageShape hint;

        protected override void OnLoad(EventArgs e)
        {
            base.OnLoad(e);

            InitializeComponent();

            hint = radGridView1.TableElement.RowDragHint;
            new Windows7Theme();
            radGridView1.ThemeName = "Windows7";

            radGridView1.TableElement.RowDragHint = hint;
          }
0 comments