home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / webobjects / resources / CORadioMatrix.README < prev    next >
Encoding:
Text File  |  1996-08-23  |  2.0 KB  |  57 lines

  1.  
  2. componentName = CORadioMatrix
  3.  
  4. author = "Charles Lloyd, modified by Joey Coyle";
  5. email = clloyd@next.com; jcoyle@darkstar.co.ihc.com
  6.  
  7.     
  8.  
  9. The CORadioMatrix is a modification of RadioMatrix which really allows a matrix of RadioButtons unlike the original which only allowed a row.  Instead of isVertical, this has been replaced with numberColumns. A table of RadioButtons will be built with that number of columns.
  10.  
  11. In order to distinguish the WORadioButtons used in this component from those in any other component, you must pass a name 'matrixName'.  In addition, you must pass an array of strings 'list' that will serve as the labels and the values of the radio buttons.  Finally, you must indicate which items 'selections' are selected
  12.  
  13.  
  14. PARAMETERS FOR .WOD
  15. ########################################################################
  16. list ################
  17. An array of strings that will become the labels as well as the return value
  18.  
  19. selection ######################
  20. Indicates which button is initially selected. Upon return, indicates the user's choice, or nil if nothing is chosen.
  21.  
  22. matrixName ################
  23. Used to distinguish the WORadioButtons used in this CORadioMatrix from those in any other CORadioMatrix
  24.  
  25. numberColumns ##################
  26. The number of columns in the matrix.  Default is 1.
  27.  
  28. borderSize #######################
  29. The width of the border of the matrix.  Default is 2.
  30.  
  31. cellPadding #######################
  32. The margin around each cell in the matrix. Default is 2
  33.  
  34. cellSpacing ########################
  35. The space between the cells in the matrix. Default is 2
  36.  
  37.  
  38.  
  39.  
  40. DIRECTIONS
  41. ######################################################################
  42. In the parent component you must declare the list(in example below called arrayList) and the selections(in example called selectedItem). 
  43.  
  44.  
  45.  
  46. Example of parent .wos file
  47.  
  48. id arrayList; // defined as list in .wod
  49. id selectedItem; // defined as selection in .wod
  50.  
  51. - awake
  52. {
  53.     arrayList=@("Joey","Bill","John","NeXT","Lenni","Cat","Whatever");
  54.     
  55. }
  56.  
  57.