Clicking the text Box button on the Form Designer toolbar pops up the Text Box Properties dialog box:
bound field: The text box is bound to a field in the table selected in the form's property settings (the value in the text box is saved to the field).
Default value: The initialization value of the text box.
width: The width of the text box, such as: 200px,60% format.
Maximum number of characters: The maximum number of characters the text box can enter, corresponding to the MaxLength property.
input type: clear text or password type, corresponding to input type= ' text ' or type= ' password '.
value type: the type of text entered, and when the form commits, it verifies that the type entered is compliant.
Event: You can bind some common events to a text box to implement some general operations.
Enter the JS script directly in the Text field, and the parameter srcobj is the text box object, which is equivalent to srcelement.
. NET open source Workflow roadflow-Form Design-text box