OLPCities/Form

From OLPC
Jump to: navigation, search

"Form" is a Class that is part of the DOM (Document Object Model). This "library" is referenced automaticaly by the browser of the OLPC station and you don't need to add anything in the program to use it.


To create an object of the Class you will use the tag FORM defining a NAME. You need to close the tag. Something like:

<form name = form1>
...

</form>

Properties

(object of the Class TextBox )  Normaly we have a chain of objects/propeties. By example: a property of the 
                                 Class TextBox can be  "value". 
                                We can capture what was typed at a textbox  with:
                                 document.form1.tb1.value. Read the reference of the Class TextBox.

(object of the Class Button)     Read the reference of the Class Button


(object of the Class TextArea)     Read the reference of the Class TextArea

(object of the Class CheckBox)     Read the reference of the Class CheckBox

(object of the Class RadioBox)     Read the reference of the Class RadioBox


(object of the Class ListBox)     Read the reference of the Class ListBox


Link to the Classes TextBox Button TextArea CheckBox RadioBox ListBox