home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / Reuse / ReusableComponentsEx / CheckBoxMatrix.wo / CheckBoxMatrix.wod < prev    next >
Encoding:
Text File  |  1996-03-02  |  504 b   |  33 lines

  1. ////////////////////////
  2. //  CheckBoxMatrix
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6. Table: WOGenericContainer {
  7.     elementName="table";
  8.     border=borderSize;
  9. };
  10.  
  11. ButtonRepetition: WORepetition {
  12.     list=valueStringsList;
  13.     item=aValue;
  14. };
  15.  
  16. CheckBox: WOCheckBox {
  17.     name=matrixName;
  18.     value=aValue;
  19.     selection=selectedItem;
  20. };
  21.  
  22. ButtonString: WOString {
  23.     value=aValue;
  24. };
  25.  
  26. OptionalBreak: WOConditional {
  27.     condition = isVertical;
  28. };
  29.  
  30. Comment: WOConditional {
  31.     condition = NO;
  32. };
  33.