Unplanned
Last Updated: 30 Mar 2016 13:07 by ADMIN
ADMIN
Dimitar
Created on: 15 Jul 2015 15:00
Category:
Type: Bug Report
0
FIX. RadScrollablePanel - the layout is invalid when the scrollable panel is used in a modal form which is shown multiple times.
To reproduce:
- Add a scrollable panel wit other controls in a form.
- Show the form using the ShowDialog method.
- Scroll to the bottom the close and show the form again 
- You will notice that the scrollbar is not shown and the controls at the top are not visible.

Workaround:
Protected Overrides Sub OnClosing(e As System.ComponentModel.CancelEventArgs)
    MyBase.OnClosing(e)
    RadScrollablePanel1.VerticalScrollbar.Value = 0
End Sub
0 comments