HTML
From Gui
(Difference between revisions)
(Note about ledgend) |
(<fieldset> is also a container) |
||
Line 2: | Line 2: | ||
* <form> [[Widget/Container]] | * <form> [[Widget/Container]] | ||
** <label> [[Widget/Label]] | ** <label> [[Widget/Label]] | ||
- | ** <fieldset> | + | ** <fieldset> [[Widget/Container]] |
*** legend (not really a widget, an obvious property of <fieldset>) | *** legend (not really a widget, an obvious property of <fieldset>) | ||
** <input> (not a widget itself, but has the following types) | ** <input> (not a widget itself, but has the following types) |
Revision as of 02:35, 13 June 2009
Widgets
- <form> Widget/Container
- <label> Widget/Label
- <fieldset> Widget/Container
- legend (not really a widget, an obvious property of <fieldset>)
- <input> (not a widget itself, but has the following types)
- hidden
- text Widget/Textarea
- password Widget/Textarea
- file
- submit Widget/Button
- reset Widget/Button
- image Widget/Button
- checkbox Widget/Checkbox
- radio Widget/Checkbox
- button Widget/Button
- <button> Widget/Button
- <textarea> Widget/Textarea
- <select> Widget/Listbox
- <optgroup> (not really a widget, just defines semantics in <select>)
- <option> (not really a widget, just defines semantics in <select>)
- <optgroup> (not really a widget, just defines semantics in <select>)
Properties
- tabindex
- disabled
- checked
- maxlength
- name
- readonly
- size (rows/cols for <textarea>)
- title
- class
- accesskey
- id
Events
- focus
- blur
- select
- change
- click
- dblclick
- mousedown
- mousemove
- mouseout
- mouseover
- mouseup
- keydown
- keypress
- keyup
- submit
- reset