Hi, I have a problem: some of my controls do postback, and then, I need to keep the scroll bar in the same place, so I'm using MaintainScrollPositionOnPostback="true". It used to work, but when I added the Coolite controls, it stopped working. Are there any incompatibilities between Coolite controls and this property? Am I doing something wrong?

This is my code:


  <ext:ViewPort ID="ViewPort1" runat="server">

        <Body>

            <ext:FitLayout runat="server" ID="ctl11" IDMode="Legacy">

                <ext:Panel ID="pnlPrincipal" runat="server" Frame="true" Title="Personas" AutoScroll="True">

                    <Body>

                        <asp:Panel ID="pnlEdit" SkinID="PanelContenedor" runat="server">

                            <table class="tableEstilo1">

                                   /*code*/

                            </table>

                         </asp:Panel>                   

                    </Body>

                </ext:Panel>

            </ext:FitLayout>

        </Body>

    </ext:ViewPort>
Thanks in advance and sorry for my bad english.