DIGIFORMS
Digiforms Designer Documentation
 
 
 
 
 
 
Help by samples
 
 
 
Capture or output data in a defined layout
 
Extensible Markup Language
Form attributes
$digiforms:formAttributes
Accessing form information while rendering a page
If you want to display customized navigation menus or document overview, you can access all information regarding currently viewed document or form.
Digiforms Server automatically generates an internal xmlCache with document details whenever a document is invoked. To access this information, use the $digiforms:formAttributes prefix.
<form> <!--============================================--> <!-- Document name ( db ) --> <!--============================================--> <documentname>Designer_Documentation</documentname> <!--==============================================--> <!-- Name and page index of currently viewed page --> <!--==============================================--> <templatename>article</templatename> <pagenumber>1</pagenumber> <!--==============================================--> <!-- A summary of all page templates in document --> <!--==============================================--> <templates> <template> <name>article</name> <pagetitle>Digiforms Designer Documentation</pagetitle> </template> </templates> <!--==============================================--> <!-- Current selected locale --> <!--==============================================--> <document_locale current_locale="no_NO"/> </form>
text/xml