Completed
Last Updated: 15 Aug 2017 11:03 by ADMIN
ADMIN
Dimitar
Created on: 11 Jul 2017 05:50
Category: LayoutControl
Type: Bug Report
0
FIX. RadLayoutControl - the visibility of the associated control is not restored when a group item is expanded.
To reproduce:
- Start the attached project. 
- Collapse and then expand the group.
- The label should remain hidden.

Workaround:
bool labelVisiable = false;
private void TxtIdNro_VisibleChanged(object sender, EventArgs e)
{
    if (txtIdNro.Visible && !labelVisiable)
    {
        txtIdNro.Visible = false;
    }
}
Attached Files:
0 comments