egroupware_official/api/js/etemplate/Et2Textbox/Et2Textbox.md
nathan efd2159a5f * Add masking to Et2Textbox & Et2Number
Also prefix & suffix attribute for Et2Number
2024-08-02 16:24:52 -06:00

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>