home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / DynamicElements / FormEx1.wo / FormEx1.wod < prev    next >
Encoding:
Text File  |  1996-03-08  |  872 b   |  20 lines

  1. // Navigation bar at top of page
  2. NAVLISTEXAMPLE: NavListExample {}; 
  3.  
  4. // Declares the example elements
  5. FORM: WOForm {method="POST";};
  6. CHECKBOX: WOCheckBox {checked=checkBoxChecked;};
  7. POPUPBUTTON: WOPopUpButton {list=objectList; item=anObject; selection = selectedPopUpButton;};
  8. BROWSER: WOBrowser {list=objectList; item=anObject;selections = selectedBrowserItems; size="3"; multiple=multipleSelectionAllowedInBrowser;};
  9. TEXTFIELD: WOTextField {value=textFieldValue;};
  10. HIDDENFIELD: WOHiddenField {value=hiddenFieldValue;};
  11. PASSWORDFIELD: WOPasswordField {value=passwordFieldValue;};
  12. TEXT: WOText {value=textValue; rows="5"; cols="30";};
  13. RESETBUTTON: WOResetButton{value="ResetMe!";};
  14. SUBMITBUTTON: WOSubmitButton{value="Submit!";action=submitForm;};
  15.  
  16.  
  17. // The component that lets you view the source code of the example
  18. SHOWSOURCE: CodeViewer {componentName = "FormEx1"}; 
  19.  
  20.