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

  1. ////////////////////////
  2. //  MonthChoice
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6.  
  7. OuterTable: WOGenericContainer {
  8.     elementName = "table";
  9.     border = borderSize;
  10.     cellPadding=cellPadding;
  11.     cellSpacing=cellSpacing;
  12. };
  13.  
  14. MonthCol1: RadioMatrix {
  15.     matrixName = matrixName;
  16.     selectedItem = selectedMonth;
  17.     valueStringsList = monthChoices1;
  18.     borderSize = 0;
  19.     isVertical = YES;
  20.     cellPadding=cellPadding;
  21.     cellSpacing=cellSpacing;
  22. };
  23.  
  24. MonthCol2: RadioMatrix {
  25.     matrixName = matrixName;
  26.     selectedItem = selectedMonth;
  27.     valueStringsList = monthChoices2;
  28.     borderSize = 0;
  29.     isVertical = YES;
  30.     cellPadding=cellPadding;
  31.     cellSpacing=cellSpacing;
  32. };
  33.  
  34. MonthCol3: RadioMatrix {
  35.     matrixName = matrixName;
  36.     selectedItem = selectedMonth;
  37.     valueStringsList = monthChoices3;
  38.     borderSize = 0;
  39.     isVertical = YES;
  40.     cellPadding=cellPadding;
  41.     cellSpacing=cellSpacing;
  42. };
  43.  
  44. Comment: WOConditional {
  45.     condition = NO;
  46. };
  47.