Unix and Linux Discussions Tagged with javascript |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
31 |
19,210 |
What is on Your Mind? |
|
|
|
8 |
10,969 |
Web Development |
|
|
|
23 |
10,783 |
What is on Your Mind? |
|
|
|
25 |
23,569 |
Web Development |
|
|
|
17 |
17,450 |
Web Development |
|
|
|
0 |
6,368 |
Web Development |
|
|
|
6 |
22,174 |
Web Development |
|
|
|
8 |
3,221 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
10,882 |
Web Development |
|
|
|
8 |
10,847 |
Web Development |
|
|
|
8 |
7,819 |
What is on Your Mind? |
|
|
|
0 |
10,017 |
Web Development |
|
|
|
8 |
7,089 |
What is on Your Mind? |
|
|
|
0 |
5,492 |
Web Development |
|
|
|
0 |
2,407 |
Web Development |
|
|
|
4 |
7,859 |
Cybersecurity |
|
|
|
0 |
4,625 |
Web Development |
|
|
|
0 |
2,930 |
Web Development |
|
|
|
1 |
18,115 |
Web Development |
|
|
|
0 |
2,256 |
What is on Your Mind? |
|
|
|
4 |
10,264 |
Web Development |
|
|
|
6 |
68,100 |
What is on Your Mind? |
|
|
|
1 |
4,101 |
Web Development |
|
|
|
0 |
2,930 |
What is on Your Mind? |
|
|
|
0 |
2,080 |
Web Development |
|
|
|
0 |
2,227 |
What is on Your Mind? |
|
|
|
0 |
3,289 |
What is on Your Mind? |
|
|
|
3 |
3,710 |
What is on Your Mind? |
|
|
|
1 |
2,239 |
What is on Your Mind? |
|
|
|
4 |
27,211 |
Web Development |
|
|
|
1 |
1,550 |
What is on Your Mind? |
|
|
|
39 |
13,451 |
What is on Your Mind? |
|
|
|
1 |
2,538 |
What is on Your Mind? |
|
|
|
29 |
8,730 |
What is on Your Mind? |
|
|
|
2 |
2,741 |
What is on Your Mind? |
|
|
|
0 |
6,523 |
What is on Your Mind? |
|
|
|
22 |
8,041 |
What is on Your Mind? |
|
|
|
11 |
9,417 |
War Stories |
|
|
|
0 |
3,956 |
What is on Your Mind? |
|
|
|
53 |
15,085 |
What is on Your Mind? |
javascript(n) HTML and Java Script Generation javascript(n)
NAME
javascript - Procedures to generate HTML and Java Script structures.
SYNOPSIS
package require Tcl 8
package require javascript ?1.0?
::javascript::makeSelectorWidget id leftLabel leftValueList rightLabel rightValueList rightNameList ?length? ?minWidth?
::javascript::makeSubmitButton name value
::javascript::makeProtectedSubmitButton name value msg
::javascript::makeMasterButton master value slavePattern boolean
::javascript::makeParentCheckbox parentName childName
::javascript::makeChildCheckbox parentName childName
DESCRIPTION
The ::javascript package provides commands that generate HTML and Java Script code. These commands typically return an HTML string as
their result. In particular, they do not output their result to stdout.
::javascript::makeSelectorWidget id leftLabel leftValueList rightLabel rightValueList rightNameList ?length? ?minWidth?
Construct HTML code to create a dual-multi-selection megawidget. This megawidget consists of two side-by-side multi-selection boxes
separated by a left arrow and a right arrow button. The right arrow button moves all items selected in the left box to the right
box. The left arrow button moves all items selected in the right box to the left box. The id argument is the suffix of all HTML
objects in this megawidget. The leftLabel argument is the text that appears above the left selection box. The leftValueList argu-
ment is the values of items in the left selection box. The leftNameList argument is the names to appear in the left selection box.
The rightLabel argument is the text that appears above the right selection box. The rightValueList argument is the values of items
in the right selection box. The rightNameList argument is the names to appear in the right selection box. The length argument
(optional) determines the number of elts to show before adding a vertical scrollbar; it defaults to 8. The minWidth argument
(optional) is the number of spaces to determine the minimum box width; it defaults to 32.
::javascript::makeSubmitButton name value
Create an HTML submit button that resets a hidden field for each registered multi-selection box. The name argument is the name of
the HTML button object to create. The value argument is the label of the HTML button object to create.
::javascript::makeProtectedSubmitButton name value msg
Create an HTML submit button that prompts the user with a continue/cancel shutdown warning before the form is submitted. The name
argument is the name of the HTML button object to create. The value argument is the label of the HTML button object to create. The
msg argument is the message to display when the button is pressed.
::javascript::makeMasterButton master value slavePattern boolean
Create an HTML button that sets it's slave checkboxs to the boolean value. The master argument is the name of the child's parent
html checkbox object. The value argument is the value of the master. The slaves argument is the name of child html checkbox object
to create. The boolean argument is the java script boolean value that will be given to all the slaves; it must be "true" or
"false".
::javascript::makeParentCheckbox parentName childName
Create an HTML checkbox and tie its value to that of it's child checkbox. If the parent is unchecked, the child is automatically
unchecked. The parentName argument is the name of parent html checkbox object to create. The childName argument is the name of the
parent's child html checkbox object.
::javascript::makeChildCheckbox parentName childName
Create an HTML checkbox and tie its value to that of it's parent checkbox. If the child is checked, the parent is automatically
checked. The parentName argument is the name of the child's parent html checkbox object. The childName argument is the name of
child html checkbox object to create.
SEE ALSO
html, ncgi
KEYWORDS
javascript, html, checkbox, submitbutton, selectionbox
javascript 1.0 javascript(n)