mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
efd2159a5f
Also prefix & suffix attribute for Et2Number
797 B
797 B
Examples
Label
Use the label
attribute to give the input an accessible label.
Add the et2-label-fixed
class to force the label to have a fixed width. This helps line up labels and widgets into
columns without having to use a grid. See /getting-started/styling/#fixed-width-labels
<et2-textbox label="Name"></et2-textbox>
Prefix & Suffix
Use prefix
and suffix
slots to add content before or after the text
<et2-textbox>
<sl-icon name="youtube" slot="prefix"></sl-icon>
<sl-icon name="upload"></sl-icon>
</et2-textbox>
Mask
Setting a mask limits what the user can enter into the field.
<et2-textbox label="Part Number" helpText="P[aa]-0000" mask="{P}[aa]-0000"></et2-textbox>