[UP] The UI language |
The element ui:application This is the top-level element of an application. It contains all ui:dialog and ui:template elements. Declaration Level: Dialog structure <!ELEMENT ui:application ( ui:dialog | ui:template )+ > <!ATTLIST ui:application start-dialog NMTOKEN #REQUIRED > Attributes
Example <ui:application start-dialog="main"> <ui:dialog name="main" start-page="portal"> <ui:page name="portal"> <html> <body> <h1>This is the first page of the application!</h1> </body> </html> </ui:page> </ui:dialog> </ui:application> |