Completed
Last Updated: 12 Dec 2018 14:55 by Dimitar
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 11 Dec 2018 11:00
Category: GridView
Type: Bug Report
0
FIX. RadGridView - child template is shrunk when scrolling the vertical scrollbar
To reproduce: the issue is reproducible in the Demo application >> GridView >> Tabbed Views. Follow the steps from the gif file.

Workaround:     
    private void radGridView1_ViewCellFormatting(object sender, CellFormattingEventArgs e)
        {
            GridDetailViewCellElement cell = e.CellElement as GridDetailViewCellElement;
            if (cell != null)
            {
                cell.MinSize = new Size(e.CellElement.Parent.Size.Width - this.radGridView1.TableElement.GroupIndent , 10);
            }
        }
Attached Files:
0 comments