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

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