Each details panel section specified in XML corresponds to a collapsible section in the details panel. A section itself consists of a title (with no variable interpolation) and a <fields> element that contains a list of fields. These fields have names that correspond directly to the table fields described previously in the fields section.
To customize the Node Detail page
<details> … <sections> <section> <title>General</title> <fields> <id> <title>Name</title> </id> … </fields> </section> … </sections> </details>
Several fields actually display a collection or list of scalar values. By default, these values are printed as a label of comma-separated values. However, if the field is given the attribute multiline="true", the field is displayed as a multi-select box with each individual collection value displayed on its own line. The fields that currently have this feature are labeled as collection fields.
<toggle-node-power> <on-button image-url="images/power-green.png" tooltip="Power on server" /> <off-button image-url="images/power-red.png" tooltip="Power off server" /> </toggle-node-power>
Related topics