<ROW> : Table row

Java class : leon.view.LyRow

ROLE

A row of a list is a set of non-empty cells (or input fields).
It is possible to indicate if the row is selected, if an image is assigned to it and if a tooltip is associated to it.

ATTRIBUTES

<!ATTLIST ROW
	  id CDATA #IMPLIED
	  template CDATA #IMPLIED
	  selected ( true | false) "false"
	  sensitive ( true | false) "true"
	  open ( true | false) "false"
	  image CDATA #IMPLIED
	  label CDATA #IMPLIED
	  index CDATA #IMPLIED
	  tooltip CDATA #IMPLIED
	  overview CDATA #IMPLIED
	  hidden ( true | false) "false"
	  borderHeight NMTOKEN #IMPLIED
	  borderColor CDATA #IMPLIED
	  font CDATA #IMPLIED
	  color CDATA #IMPLIED
	  fontColor CDATA #IMPLIED>
Attribute Mand. Description Default
id no Identifier of the line.  
template no ROW.template  
selected no Indicates if the row is selected (only for the ROW selection type on the list). false
sensitive no Indicates if the row is sensitive (a sensitive row may be selected, may have a popup menu...). true
open no Indicates if the row is open (only if the row contains sub-rows). false
image no Image assigned to the row.
This image is displayed at the beginning of the row in a column that is specially dedicated to the images.
 
label no Label of the row (displayed if row does not contain any cell).  
index no ROW.index  
tooltip no Overview label of the row.  
overview no Overview label of the row.  
hidden no Indicates if the row is hidden. false
borderHeight no Height of the border associated to the row in number of pixels. -1
borderColor no Color of horizontal border corresponding to the row.  
font no ROW.font  
color no Color of the row.  
fontColor no ROW.fontColor  

ELEMENTS

<!ELEMENT ROW 
	  ((CELL | FIELD | TOOLBAR)*,
	   ROWS?)>
Element Mand. Mult. Description
CELL yes no Cells contained in the table row.
FIELD yes no Input fields contained in the table row if this table is editable.
TOOLBAR yes no Toolbars contained in the table row.
ROWS no no Sub-rows of the row when the table is hierarchical.