Skip to main content
Version: 4.4.0

Tag

Tags are basically HTML elements. They can be used to separate the different parts of the screen we want to generate.

The structure of a tag is the following:

<tag type="[type]" label="[label]" style="[style]" source="[source]" expandible="[expand-direction]">...</tag>

There is a special tag which only contains text defined like the next one:

<tag><text>[text]</text></tag>

Tag attributes

AttributeUseTypeDescriptionValues
sourceOptionalStringTemplate source to link tobuttons, center, etc
typeOptionalStringHTML tag typediv, span, p, etc
labelOptionalStringText inside the tagNote: You can use i18n files (locales)
styleOptionalStringCss class or classes to apply to the element
idOptionalStringTag identifier. Useful for external references
expandibleOptionalStringHow to expand the tag childrenvertical, horizontal

Note: If the type is not defined, the tag element will not generate any HTML code. This is very useful to define source links (<tag source="center">...</tag>)