Changeset 7528

Show
Ignore:
Timestamp:
03/06/07 06:42:20 (21 months ago)
Author:
doughays
Message:

Fixes #2367.

Location:
dijit/trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • dijit/trunk/form/templates/Spinner.html

    r7522 r7528  
    22        ><input dojoAttachPoint='textbox' type='${this.type}' dojoAttachEvent='onblur;onfocus;onkeyup;' 
    33                value='${this.value}' name='${this.name}' size='${this.size}' maxlength='${this.maxlength}' 
    4                 waiRole="spinbutton" autocomplete="off" 
     4                waiRole="spinbutton" autocomplete="off" tabIndex='${this.tabIndex}' 
    55        ><fieldset class="dojoSpinnerArrowGroup" 
    66                ><fieldset dojoAttachPoint="upArrowNode" class="dojoSpinnerButton" 
  • dijit/trunk/form/templates/Textbox.html

    r7522 r7528  
    11<input dojoAttachPoint='textbox' dojoAttachEvent='onblur;onfocus;' 
    2         id='${this.id}' name='${this.name}' class="dojoInputField" type='${this.type}' size='${this.size}' maxlength='${this.maxlength}'> 
     2        id='${this.id}' name='${this.name}' class="dojoInputField" type='${this.type}' size='${this.size}' maxlength='${this.maxlength}' tabIndex='${this.tabIndex}'> 
  • dijit/trunk/form/templates/ValidationTextbox.html

    r7522 r7528  
    22        ><input dojoAttachPoint='textbox' type='${this.type}' dojoAttachEvent='onblur;onfocus;onkeyup;' 
    33                value='${this.value}' id='${this.id}' name='${this.name}' size='${this.size}' maxlength='${this.maxlength}' 
    4                 class='dojoInputField' 
     4                class='dojoInputField' tabIndex='${this.tabIndex}' 
    55        ><span dojoAttachPoint='messageSpan' class='dojoValidationTextboxMessage' waiRole='alert'></span 
    66></span> 
  • dijit/trunk/tests/form/test_validate.html

    r7527 r7528  
    8585                        <div class="formQuestion"> 
    8686                                <span class="emphasize"><label for="q01">First Name:  </label></span> 
    87                                 <span class="noticeMessage"> Textbox class, Attributes: {trim: true, ucFirst: true, class: 'medium'}, First letter of each word is upper case.</span> 
    88                         </div> 
    89                         <div class="formAnswer"> 
    90                                 <input id="q01" type="text" name="firstname" value="testing testing" class="medium" 
     87                                <span class="noticeMessage"> Textbox class, <b>tabIndex=2</b>, Attributes: {trim: true, ucFirst: true, class: 'medium'}, First letter of each word is upper case.</span> 
     88                        </div> 
     89                        <div class="formAnswer"> 
     90                                <input id="q01" type="text" name="firstname" value="testing testing" class="medium" tabIndex=2 
    9191                                        dojoType="dijit.form.Textbox" 
    9292                                        trim="true"  
     
    107107                        <div class="formQuestion"> 
    108108                                <span class="emphasize"><label for="q03">Age:  </label></span> 
    109                                 <span class="noticeMessage"> Textbox class, Attributes: {trim: true, digit: true, class: 'small'}, all but digits extracted.</span> 
    110                         </div> 
    111                         <div class="formAnswer"> 
    112                                 <input id="q03" type="text" name="age" value="38" class="small" 
     109                                <span class="noticeMessage"> Textbox class, <b>tabIndex=1</b>, Attributes: {trim: true, digit: true, class: 'small'}, all but digits extracted.</span> 
     110                        </div> 
     111                        <div class="formAnswer"> 
     112                                <input id="q03" type="text" name="age" value="38" class="small" tabIndex=1 
    113113                                        dojoType="dijit.form.NumberTextbox" 
    114114                                        promptMessage="(optional) Enter an age between 0 and 120"