![[ FORM ]](pic/form_button.gif) |
Form: By pushing this button Globe inserts the <FORM ACTION="" METHOD="post"></FORM> elements into the text
at the position of the cursor and puts it between them. It makes it possible for you to define the content and functions of the forms you would like to create. The inserted form is a general form pattern that you can complete or modify as you want. You have to specify the parameters.
If you want to set the properties of the form put the cursor before the HTML starting element > and hit a space. Globe will help you to select parameters. You can read about this function in more detail in the tutorial section.
|
![[ SUBMIT ]](pic/submit_button.gif) |
Submit: By pushing this button Globe inserts the <INPUT TYPE="submit"> element into the text
at the position of the cursor. It makes it possible for you to create a button on the form. That button executes the operation defined for the form using the data of the form. If you want to set the properties of it put the cursor before the HTML starting element > and hit a space.
Globe will help you to select parameters. You can read about this function in more detail in the tutorial section.
|
![[ RESET ]](pic/reset_button.gif) |
Reset: By pushing this button Globe inserts the <INPUT TYPE="reset"> element into the text
at the position of the cursor. The form data will be removed and the operation will not be executed. If you want to set the properties of it put the cursor before the HTML starting element > and hit a space.
Globe will help you to select parameters. You can read about this function in more detail in the tutorial section.
|
![[ TEXT ]](pic/text_button.gif) |
Edit box: By pushing this button Globe inserts the <INPUT TYPE="text" NAME=""> element into the text
at the position of the cursor. You can create an edit box in an HTML document by means of this statement. If you want to set the properties of it put the cursor before the HTML starting element > and hit a space.
Globe will help you to select parameters. You can read about this function in more detail in the tutorial section.
|
![[ HIDDEN ]](pic/hidden_button.gif) |
Hidden edit box: By pushing this button Globe inserts the <INPUT TYPE="hidden" NAME="" VALUE=""> element into the text
at the position of the cursor. You can create a masked edit box in an HTML document by means of this statement. A "*" character appears in the box like that rather than the character written. If you want to set the properties of it put the cursor before the HTML starting element > and hit a space.
Globe will help you to select parameters.
|
![[ TEXTAREA ]](pic/txtarea_button.gif) |
Text area: By pushing this button Globe inserts the <TEXTAREA NAME=""></TEXTAREA> elements into the text
at the position of the cursor and puts it between them. You can define the properties of a text area by means of this statement. If you want to set the properties of it put the cursor before the HTML starting element > and hit a space.
Globe will help you to select parameters.
|
![[ RADIO ]](pic/radio_button.gif) |
Radio button: By pushing this button Globe inserts the <INPUT TYPE="radio" NAME=""> element into the text
at the position of the cursor. You can use it in the defined selections to choose and forwarding it to execution. If you want to set the properties of it put the cursor before the HTML starting element > and hit a space.
Globe will help you to select parameters. You can read about this function in more detail in the tutorial section.
|
![[ CHECKBOX ]](pic/checkbox_button.gif) |
Check box: By pushing this button Globe inserts the <INPUT TYPE="checkbox" NAME=""> element into the text
at the position of the cursor. You can use it in the defined selections to choose and forwarding it to execution. If you want to set the properties of it put the cursor before the HTML starting element > and hit a space.
Globe will help you to select parameters. You can read about this function in more detail in the tutorial section.
|
![[ SELECT ]](pic/select_button.gif) |
Drop-down list: By pushing this button Globe inserts the <SELECT NAME=""></SELECT>> elements into the text
at the position of the cursor and puts it between them. You can create a drop-down list by means of this statement. If you want to set the properties of it put the cursor before the HTML starting element > and hit a space.
Globe will help you to select parameters. You can read about this function in more detail in the tutorial section.
|