Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 754733
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T15:02:52+00:00 2026-05-14T15:02:52+00:00

Custom Validation Control: <asp:CustomValidator ID=valSex runat=server ErrorMessage=1.2 &lt;b&gt;Sex&lt;/b&gt; not specified EnableClientScript=true ClientValidationFunction=ValidateSex SetFocusOnError=True>Selection required</asp:CustomValidator>

  • 0

Custom Validation Control:

<asp:CustomValidator
ID="valSex" runat="server" ErrorMessage="1.2 &lt;b&gt;Sex&lt;/b&gt; not specified"
EnableClientScript="true" ClientValidationFunction="ValidateSex" SetFocusOnError="True">Selection required</asp:CustomValidator>

Client Side validation routine:

function ValidateSex(source, args) {

    var optMale = document.getElementById("<%=optMale.ClientID %>");
    var optFemale = document.getElementById("<%=optFemale.ClientID %>");

    if (!optMale.checked && !optFemale.checked) {
        args.IsValid = false;
        optMale.focus();
    }
    else
        args.IsValid = true;
}

When the page is submitted and Sex is not specified, focus is set but the 2 radio buttons are not quite in view, vertical scrolling is required to bring them into view.

Shouldn’t the Focus() method have brought the focus control into view?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T15:02:53+00:00Added an answer on May 14, 2026 at 3:02 pm

    I don’t think all browsers necessarily implement it that way. You can scroll it into view using scrollTo(x, y).

    The following should do the trick:

    function scrollToElement(elementId)
        var offset = findPos(document.getElementById(elementId));
        var x = offset[0];
        var y = offset[1];
    
        window.scrollTo(x, y);
    }
    
    function findPos(obj) {
        var curleft = curtop = 0;
        if (obj.offsetParent) {
            do {
                curleft += obj.offsetLeft;
                curtop += obj.offsetTop;
            } while (obj = obj.offsetParent);// yes, it's an assignment
        }
        return [curleft,curtop];
    }
    

    More on finding position at http://www.quirksmode.org/js/findpos.html.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

web user control details: <asp:CustomValidator ID=cvServerValidateDate runat=server ControlToValidate=tbDate onservervalidate=cvValidateServer ValidateEmptyText=True ClientValidationFunction=validateDateControl></asp:CustomValidator> iv> <script type=text/javascript>
I have the following text box control ; <asp:TextBox ID=txtAmount runat=server AutoPostBack=true Width=85px class=validate[ERExpenseTypeDaterequired,custom[float]]
Here is a code for my web form control <asp:TextBox runat=server ID=txtUsername></asp:TextBox> <asp:RequiredFieldValidator ID=RequiredFieldValidator1
I added a custom validation method to validate a password. However, it does not
I've written a custom ASP.net control that descends from LinkButton and overrides the Render()
I am creating a custom server control to generate button elements with specific markup
In an ASP.net application I'm using a Login control with a custom membership provider
I have a custom user control that contains asp:ValidationSummary . It is placed on
I have a listview that loads dynamic controls from xml/xslt <asp:ListView ID=DynamicFields runat=server DataSourceID=CustomFields
I have a user control with some custom client side validation. When I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.