Lines Matching defs:button

239 			  submit reset defaults radio_group popup_menu button autoEscape
706 # Clear out our default submission button flag if present
2008 #### Method: button
2009 # Create a javascript button.
2011 # $name -> (optional) Name for the button. (-name)
2012 # $value -> (optional) Value of the button when selected (and visible name) (-value)
2013 # $onclick -> (optional) Text of the JavaScript to run when the button is
2016 # A string containing a <input type="button"> tag
2018 'button' => <<'END_OF_FUNC',
2019 sub button {
2037 return $XHTML ? qq(<input type="button" $tabindex$name$val$script$other />)
2038 : qq(<input type="button"$name$val$script$other>);
2044 # Create a "submit query" button.
2046 # $name -> (optional) Name for the button.
2047 # $value -> (optional) Value of the button when selected (also doubles as label).
2048 # $label -> (optional) Label printed on the button(also doubles as the value).
2075 # Create a "reset" button.
2077 # $name -> (optional) Name for the button.
2101 # Create a "defaults" button.
2103 # $name -> (optional) Name for the button.
2107 # Note: this button has a special meaning to the initialization script,
2140 # The field value is "on" when the button is checked.
2283 # values for each button in the group.
2284 # $default -> (optional) Value of the button to turn on by default. Pass '-'
2639 # $name -> Name of the button
3071 # a GO BACK button.
4255 radio button clusters and the like. To get around this warning, you
5219 even if the user presses the stop button before the page has loaded
5688 "<CLICK ME>" as the label for a button. However, it also interferes with
6401 radio buttons receive focus when the user presses the tab button. If
6404 one. If given a reference to an array of radio button values, then
6407 hash in which the hash keys are the radio button values and the values
6408 are the tab indexes of each button. Examples:
6415 attached to the <label> element that surrounds each button.
6423 The value returned by checkbox_group() is actually an array of button
6520 button to turn on. If not specified, the first item will be the
6521 default. You can provide a nonexistent button name, such as "-" to
6532 array relating the radio button values to user-visible labels to be
6554 radio buttons receive focus when the user presses the tab button. If
6557 one. If given a reference to an array of radio button values, then
6560 hash in which the hash keys are the radio button values and the values
6561 are the tab indexes of each button. Examples:
6575 attached to the <label> element that surrounds each button.
6577 When the form is processed, the selected radio button can
6582 The value returned by radio_group() is actually an array of button
6598 submit() will create the query submission button. Every form
6607 The first argument (-name) is optional. You can give the button a
6613 The second argument (-value) is also optional. This gives the button
6621 button.
6625 You can figure out which button was pressed by using different
6634 reset() creates the "reset" button. Note that it restores the
6645 defaults() creates a button that, when invoked, will cause the
6724 Fetch the value of the button this way:
6730 print button(-name=>'button_name',
6736 print button('button_name',"do_something()");
6738 button() produces a button that is compatible with Netscape 2.0's
6968 things as the mouse passing over a form element, a button being
6996 The user has pressed the submit button of a form. This event happens