|
Revision 3862, 0.5 kB
(checked in by bill, 3 years ago)
|
|
rename Button2 to Button (since it contains the official sepia theme button)
|
| Line | |
|---|
| 1 | <script> |
|---|
| 2 | dojo.require("dojo.widget.ComboBox"); |
|---|
| 3 | dojo.require("dojo.widget.Button"); |
|---|
| 4 | </script> |
|---|
| 5 | <h1>Document 0</h1> |
|---|
| 6 | This document has <a href="http://www.dojotoolkit.org/">a link</a>.<br /> |
|---|
| 7 | (to check we're copying children around properly).<br /> |
|---|
| 8 | Also it's got a widget, a combo box:<br> |
|---|
| 9 | <select dojoType="combobox"> |
|---|
| 10 | <option value="1">foo</option> |
|---|
| 11 | <option value="2">bar</option> |
|---|
| 12 | <option value="3">baz</option> |
|---|
| 13 | </select> |
|---|
| 14 | And a button too: |
|---|
| 15 | <button dojoType="Button">hello!</button> |
|---|
| 16 | Here's some text that comes AFTER the button. |
|---|