home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / Share / Java / ScriptBuilder / NOSB30_TRIAL.exe / data1.cab / Program_Files / CompLib / RadioButton / RadioButton.scc < prev    next >
Encoding:
Text File  |  1998-10-05  |  3.3 KB  |  92 lines

  1. <!--Created with NetObjects Script Component Pad-->
  2. <?XML VERSION="1.0"?>
  3. <!DOCTYPE COMPONENT SYSTEM "ecmascriptcomponent.dtd">
  4.  
  5. <COMPONENT NAME="com.netobjects.RadioButton" ENV="client"
  6.                DISPLAYNAME="RadioButton"
  7.                HINT="Creates a RadioButton control."
  8.                VERSION="1.0"
  9.                SRC="RadioButton.js">
  10.  
  11.    <ICON SRC16="RadioButtonIcon.gif"/>
  12.    <META NAME="COPYRIGHT" VALUE="Copyright ⌐1998, NetObjects, Inc."/>
  13.    
  14.    <PROPERTY NAME="name" TYPE="STRING"
  15.                  DISPLAYNAME="name"
  16.                  HINT="(REQUIRED) Enter unique name of the control. Must exactly match the name of the corresponding JavaScript object on the page."
  17.                  DEFAULTVALUE="RadioButton1">
  18.                  </PROPERTY>
  19.  
  20.    <PROPERTY NAME="radioButtonName" TYPE="STRING"
  21.                  DISPLAYNAME="radioButtonName"
  22.                  HINT="(REQUIRED) Entername of the RadioButton form tag.  Must not match the 'name' property."
  23.                  DEFAULTVALUE="RadioButtonName1">
  24.                  </PROPERTY>
  25.  
  26.    <PROPERTY NAME="formName" TYPE="STRING"
  27.                  DISPLAYNAME="formName"
  28.                  HINT="Enter the name of the form in which the RadioButton resides.">
  29.                  </PROPERTY>
  30.  
  31.    <PROPERTY NAME="defaultselected" TYPE="BOOLEAN"
  32.                  DISPLAYNAME="defaultselected"
  33.                  HINT="Select whether the RadioButton is checked by default."
  34.                  VALUESET="true|false"
  35.                  DEFAULTVALUE="false">
  36.                  </PROPERTY>
  37.  
  38.    <PROPERTY NAME="selectedVal" TYPE="STRING"
  39.                  DISPLAYNAME="selectedVal"
  40.                  HINT="Enter the value used for RadioButton.">
  41.                  </PROPERTY>
  42.  
  43.    <PROPERTY NAME="showLabel" TYPE="BOOLEAN"
  44.                  DISPLAYNAME="showLabel"
  45.                  HINT="Select whether a to print the selected value as a label for the RadioButton."
  46.                  VALUESET="true|false"
  47.                  DEFAULTVALUE="true">
  48.                  </PROPERTY>
  49.  
  50.    <PROPERTY NAME="state" TYPE="STRING"
  51.                  DISPLAYNAME="state"
  52.                  HINT="Select the RadioButton state."
  53.                  VALUESET="editable|read-only|hidden"
  54.                  DEFAULTVALUE="editable">
  55.                  </PROPERTY>
  56.  
  57.  
  58.    <PROPERTY NAME="testMode" TYPE="STRING"
  59.                  DISPLAYNAME="testMode"
  60.                  HINT="Select the test mode."
  61.                  VALUESET="off|alerts|text"
  62.                  DEFAULTVALUE="off">
  63.                  </PROPERTY>
  64.  
  65.   
  66.    <METHOD NAME="render"
  67.                DISPLAYNAME="Render"
  68.                ENV="CLIENT"
  69.                HINT="Renders control.">
  70.                </METHOD>
  71.  
  72.    <EVENT NAME="onClick"
  73.               DISPLAYNAME="onClick"
  74.               HINT="Event handler fires on click of RadioButton."/>
  75.  
  76.    <EVENT NAME="onFocus"
  77.               DISPLAYNAME="onFocus"
  78.               HINT="Event handler fires on focus of RadioButton."/>
  79.  
  80.    <EVENT NAME="onBlur"
  81.               DISPLAYNAME="onBlur"
  82.               HINT="Event handler fires on blur of RadioButton."/>
  83.  
  84.    <EVENT NAME="onRender"
  85.               DISPLAYNAME="onRender"
  86.               HINT="Event handler fires on render of RadioButton."/>
  87.  
  88.     <HELP SRC="RadioButton.html"/>
  89.  
  90.  
  91. </COMPONENT>
  92.