increase default field size to 1000

This commit is contained in:
Roland Gruber 2020-02-10 20:52:15 +01:00
parent 7981f59b0e
commit fdb6aaa809
1 changed files with 2 additions and 2 deletions

View File

@ -438,8 +438,8 @@ class htmlInputField extends htmlElement {
protected $fieldValue;
/** field size (default 30) */
protected $fieldSize = 30;
/** field max length (default 255) */
protected $fieldMaxLength = 255;
/** field max length (default 1000) */
protected $fieldMaxLength = 1000;
/** on keypress event */
protected $onKeyPress = null;
/** on keyupp event */