Skip to content

Commit 71207a1

Browse files
committed
document rows parameter for textarea component
Adds a `rows` parameter to the `textarea` component to control the number of rows displayed. #993
1 parent 4eb8008 commit 71207a1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

examples/official-site/sqlpage/migrations/01_documentation.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,7 @@ INSERT INTO parameter(component, name, description, type, top_level, optional) S
306306
('prefix','Text to display on the left side of the input field, on the same line.','TEXT',FALSE,TRUE),
307307
('suffix','Short text to display after th input, on the same line. Useful to add units or a currency symbol to an input.','TEXT',FALSE,TRUE),
308308
('readonly','Set to true to prevent the user from modifying the value of the input field.','BOOLEAN',FALSE,TRUE),
309+
('rows','Number of rows to display for a textarea. Defaults to 3.','INTEGER',FALSE,TRUE),
309310
('disabled','Makes the field non-editable, non-focusable, and not submitted with the form. Use readonly instead for simple non-editable fields.','BOOLEAN',FALSE,TRUE),
310311
('id','A unique identifier for the input, which can then be used to select and manage the field with Javascript code. Usefull for advanced using as setting client side event listeners, interactive control of input field (disabled, visibility, read only, e.g.) and AJAX requests.','TEXT',FALSE,TRUE)
311312
) x;

0 commit comments

Comments
 (0)