I have a WebSpliter in my page with 2 spliter panels, in the first one I have a WebProgressbar but when I change the size of the splitter panel the WebProgrssBar stays in the same place.
What can I do?
The original size:
When I change the size:
Let me know if you have any questions with this matter.
Thank you
Is there another solution? because this is not suitable for my case, my client don't want to change the apperance of the page, besides is not an elegant solution from the estetic point of view, I don't want the progress bar resizes with the container panel.
SplitterPane has EnableRelativeLayout property that needs to be set to true to display properly in IE8 Compatible Mode.
<ig:WebSplitter ID="WebSplitter1" runat="server" Height="200px" Width="300px" DynamicResize="True"> <ClientEvents SplitterBarMoving="WebSplitter1_SplitterBarMoving" /> <Panes> <ig:SplitterPane runat="server" EnableRelativeLayout="true"> <Template> <ig:WebProgressBar ID="WebProgressBar1" runat="server" Maximum="300" Value="150"> </ig:WebProgressBar> </Template> </ig:SplitterPane> <ig:SplitterPane runat="server"> </ig:SplitterPane> </Panes> </ig:WebSplitter>
Please let me know if this is working for you.
But, isn't this a bug?
View in ie8 WITHOUT compatibility:
View in ie8 WITH compatibility enabled
Hello Alejandro,
you can put the progress bar where you want, it will not change its size. It shows you the progress when you change the size of the splitter panel.
Please let me know if you need additional assistance