You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Chad Davis (JIRA)" <ji...@apache.org> on 2016/11/22 23:14:00 UTC

[jira] [Created] (WW-4718) focusElement form attribute not working

Chad Davis created WW-4718:
------------------------------

             Summary: focusElement form attribute not working
                 Key: WW-4718
                 URL: https://issues.apache.org/jira/browse/WW-4718
             Project: Struts 2
          Issue Type: Bug
    Affects Versions: 2.5.5, 2.3.24
         Environment: internet explorer
chrome
            Reporter: Chad Davis


I cannot get the focusElement attribute on the form tag to work. I've tried it in both IE and chrome and in neither case will the text field I want to focus when the page loads do so.

Here is the html for the form I'm trying to do this with:

{code:xml}
<s:form action="ViewSubscriber" method="GET" cssClass="form-group"
        focusElement="subscriberListAutocomplete">
    <div class="input-group">
        <s:textfield name="subscriberName" 
                     id="subscriberListAutocomplete" 
                     cssClass="subscriberListAutocomplete form-control"
                     placeholder="Subscriber Name"
                     tabindex="1"/>
        <span class="input-group-btn">
            <s:submit value="View Subscriber" 
                      cssClass="btn btn-success"
                      tabindex="0"/>
        </span>
    </div>
</s:form>
{code}

If I change the textfield to a basic input element and use html's autofocus attribute, it works fine. I have no idea what else I can try on this.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)