Package com.persequor.extension.frontend
Interface ITextAreaField
- All Superinterfaces:
IComponent<ITextAreaField>
,IFormField<ITextAreaField>
,IHasAttributes<ITextAreaField>
,IHasId<ITextAreaField>
,IHasSettableValue<ITextAreaField,
String>
public interface ITextAreaField
extends IFormField<ITextAreaField>, IHasAttributes<ITextAreaField>, IHasSettableValue<ITextAreaField,String>
-
Method Summary
Modifier and TypeMethodDescriptionsetMaxRows
(int rows) Maximum number of rows to display for the textarea, defaults to 5.setMinRows
(int rows) Minimum number of rows to display for the textarea, defaults to 5.Methods inherited from interface com.persequor.extension.frontend.data.IComponent
half, quarter, setGridWidth, sixth, third, twelfth, twoThirds
Methods inherited from interface com.persequor.extension.frontend.IFormField
focus, setHelpText, setHelpText, setLabel, setLabel, setPlaceholder, setPlaceholder, setReadonly, setRequired
Methods inherited from interface com.persequor.extension.frontend.IHasAttributes
attr, attr, attr, attr, attr, attr
Methods inherited from interface com.persequor.extension.frontend.IHasSettableValue
setValue
-
Method Details
-
setMinRows
Minimum number of rows to display for the textarea, defaults to 5.- Parameters:
rows
- min number of rows- Returns:
- reference to self
-
setMaxRows
Maximum number of rows to display for the textarea, defaults to 5. The textarea will automatically grow depending on the content, up to this size.- Parameters:
rows
- max number of rows- Returns:
- reference to self
-