Text Input: Reference
Reference for Text Input in Mobile Framework References. Key properties: ID, Class, Name, Type.
Source: Addons/dmxFramework7_2/Shared/DMXzone/dmxAppConnect/rules/framework7_8_rules.js
Inspector Property Groups
Text Input Properties
| Property | Type | Details |
|---|---|---|
| ID | text | Attribute: id |
| Class | text | Attribute: class |
| Name | text | HTML name attribute. Sets the control name . This is used as the field key in form submissions and is essential for classic post submissions and many server-side handlers. Bootstrap docs: Forms overview Attribute: name |
| Type | droplist | HTML input type. Controls the underlying <input type="..."> used by the form control. Choose a type that matches the expected value (e.g. email , number , password ) for better validation and mobile keyboards. Bootstrap docs: Form control Attribute: type Options: text, hidden, color, date, datetime-local, time |
| Placeholder | text | Placeholder text. Sets the placeholder text shown when the input is empty. Do not use placeholders as a replacement for labels; use them as examples or hints. Bootstrap docs: Form control Attribute: placeholder |
| Static Value | text | Initial/default value. Sets the control initial value. For App Connect, you often bind values reactively instead of hardcoding them. Bootstrap docs: Form control Attribute: value |