The <remform> tag allows adding to the portal a form consisting of model attributes to the portal.
The following attributes are applicable:
Attribute | Type | Mandatory | Description | ||
---|---|---|---|---|---|
isPortal | Boolean | N | Set the attribute to 'true' to display the widget on the portal.
| ||
isUserScripts | Boolean | N | Disable client scripts execution. The default value is 'true'. | ||
recordId | String | N | Specify an ID of an existing record to extend. | ||
saveButtonCaption | String | N | Specify text displayed on the Save button. | ||
style | String | N | Specify the display settings (size, font, color, etc.) of the widget elements using the CSS syntax. | ||
tableName | String | Y | Specify the name of the table containing the extending record. |
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<remform modelId="{data.model_id}" isPortal="true" tableName="rem_table" saveButtonCaption="Save" /> |
...