- Timestamp:
- 05/16/08 16:35:39 (6 months ago)
- Location:
- dijit/trunk
- Files:
-
- 5 modified
-
form/templates/Button.html (modified) (1 diff)
-
form/templates/DropDownButton.html (modified) (1 diff)
-
form/_FormWidget.js (modified) (1 diff)
-
tests/form/Form.html (modified) (1 diff)
-
_Widget.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dijit/trunk/form/templates/Button.html
r12581 r13752 3 3 waiRole="presentation" 4 4 ><button class="dijitReset dijitStretch dijitButtonNode dijitButtonContents" dojoAttachPoint="focusNode,titleNode" 5 type="${type}" waiRole="button" waiState="labelledby-${id}_label"5 name="${name}" type="${type}" waiRole="button" waiState="labelledby-${id}_label" 6 6 ><span class="dijitReset dijitInline ${iconClass}" dojoAttachPoint="iconNode" 7 7 ><span class="dijitReset dijitToggleButtonIconChar">✓</span -
dijit/trunk/form/templates/DropDownButton.html
r12413 r13752 3 3 waiRole="presentation" 4 4 ><div class='dijitReset dijitRight' waiRole="presentation" 5 ><button class="dijitReset dijitStretch dijitButtonNode dijitButtonContents" type="${type}" 5 ><button class="dijitReset dijitStretch dijitButtonNode dijitButtonContents" type="${type}" name="${name}" 6 6 dojoAttachPoint="focusNode,titleNode" waiRole="button" waiState="haspopup-true,labelledby-${id}_label" 7 7 ><div class="dijitReset dijitInline ${iconClass}" dojoAttachPoint="iconNode" waiRole="presentation"></div -
dijit/trunk/form/_FormWidget.js
r13547 r13752 93 93 94 94 95 _onFocus: function(e){ 96 dijit.scrollIntoView(this.domNode); 97 this.inherited(arguments); 98 }, 99 95 100 _onMouse : function(/*Event*/ event){ 96 101 // summary: -
dijit/trunk/tests/form/Form.html
r13735 r13752 361 361 </table> 362 362 363 <button dojoType= dijit.form.ButtononClick="getValues();">Get Values from form!</button>364 <button dojoType= dijit.form.ButtononClick="setValues();">Set Values to form!</button>365 <button dojoType= dijit.form.Button type="submit">Submit</button>366 <button dojoType= dijit.form.Buttontype="reset">Reset</button>363 <button dojoType="dijit.form.Button" onClick="getValues();">Get Values from form!</button> 364 <button dojoType="dijit.form.Button" onClick="setValues();">Set Values to form!</button> 365 <button dojoType="dijit.form.Button" type="submit" name="submitButton" value="Submit">Submit</button> 366 <button dojoType="dijit.form.Button" type="reset">Reset</button> 367 367 </form> 368 368 -
dijit/trunk/_Widget.js
r13710 r13752 298 298 299 299 _onFocus: function(e){ 300 dijit.scrollIntoView(this.domNode);301 300 this.onFocus(); 302 301 },