Xebra Write Xeb File
Revision as of 08:54, 6 July 2009 by Sandrod (Talk | contribs) (New page: =Hello World= The simlest xeb file is a hello world example: <xml> Hello World! </xml> This page will just display "Hello World!" as is. =Iteration over lists and display= If we have ...)
Hello World
The simlest xeb file is a hello world example:
Hello World!
This page will just display "Hello World!" as is.
Iteration over lists and display
If we have a list and want to iterate over it, we can simply use the iterate tag.
<xeb:iterate list="persons" variable="person" class="PERSON"> <xeb:display feature="#{person.name}" /> </xeb>