Within a Tabpanel, I have validators that will populate a ValidatorSummary at the top of a panel. On a button, I have an OnClientClick that goes to a function that will put move the panel to the top of the page.
However, when this happens, some of the look of the panel get's effected. For instance, there is a part of the page that when a user clicks on a checkbox, a group of smaller textboxes appear.
When this javascript is launched to go to the top:
function MoveTo() {
TabContainer1.Tabs.scrollTo(0, 0)
}
the boxes to disappear again. The validation summary works fine, the scroll to top works fine, but my page shouldn't be changed by this.
<asp:Button style="visibility:visible" ValidationGroup="One" ID="Button1" runat="server" Text="Submit" OnClientClick ="MoveTo()" />
I've tried lot's of ideas, but nothing works. Any ideas?
However, when this happens, some of the look of the panel get's effected. For instance, there is a part of the page that when a user clicks on a checkbox, a group of smaller textboxes appear.
When this javascript is launched to go to the top:
function MoveTo() {
TabContainer1.Tabs.scrollTo(0, 0)
}
the boxes to disappear again. The validation summary works fine, the scroll to top works fine, but my page shouldn't be changed by this.
<asp:Button style="visibility:visible" ValidationGroup="One" ID="Button1" runat="server" Text="Submit" OnClientClick ="MoveTo()" />
I've tried lot's of ideas, but nothing works. Any ideas?