{% import '_includes/forms' as forms %} {{ columnsField|raw }} {{ defaultsField|raw }} {{ forms.textField({ label: "Min Rows"|t('app'), instructions: "The minimum number of rows the field is allowed to have."|t('app'), id: 'minRows', name: 'minRows', value: field.minRows, size: 3, errors: field.getErrors('minRows') }) }} {{ forms.textField({ label: "Max Rows"|t('app'), instructions: "The maximum number of rows the field is allowed to have."|t('app'), id: 'maxRows', name: 'maxRows', value: field.maxRows, size: 3, errors: field.getErrors('maxRows') }) }} {{ forms.textField({ label: "Add Row Label"|t('app'), instructions: "Insert the button label for adding a new row to the table."|t('app'), id: 'addRowLabel', name: 'addRowLabel', value: field.addRowLabel, size: 20, errors: field.getErrors('addRowLabel') }) }} {% if craft.app.db.isMysql %}
{{ "Advanced"|t('app') }} {% endif %}