I am using radeditor for ajax with asp.net validator control using the code below. when user click on the button, validation works in IE and pages get scrolled to the editor. But it does not work in firefox. I have a long page and submit page is at the bottom. In all non IE browsers when I click submit, nothing happens and if i scroll up to the box i can see the valiation text there. How can I scroll the page to make sure that it shows the valiation msg. thanks.
<tk:RadEditor ID="txt" runat="server" Width="80%" Height="290px" ToolsFile="~/Editor/BasicEditTools.xml"
EditModes="Design">
</tk:RadEditor>
<cc1:ValidatorCalloutExtender ID="VCRequiredText" runat="server" TargetControlID="RequiredText">
</cc1:ValidatorCalloutExtender>
<
asp:RequiredFieldValidator ID="RequiredText" runat="server" ControlToValidate="txt"
SetFocusOnError="True" Display="None" ErrorMessage="Please enter text...."></asp:RequiredFieldValidator>
