Bug #7633
closed
newgocev4 (character limit on comment section too low)
Added by Tristan Kendrick Biscocho over 5 years ago.
Updated over 5 years ago.
Description
Hi,
Please check why the number of characters that i can type on the comment section is severely limited. It doesnt go beyond the second line.

Files
- Subject changed from character limit on comment section too low to newgocev4 (character limit on comment section too low)
- Category set to Bugs
- Status changed from New to Feedback
- Assignee changed from Chris Lomuntad to Tristan Kendrick Biscocho
Tris,
Reason nyan is, max characters nya is only set to 255
dahil ang field type ng comments na column from vicidial_list is VARCHAR(255)
(please see SQL output below)... And pag need mo pumunta sa new line, press enter :D
MariaDB [asteriskdb]> SHOW COLUMNS FROM vicidial_list WHERE Field = 'comments';
+----------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+--------------+------+-----+---------+-------+
| comments | varchar(255) | YES | | NULL | |
+----------+--------------+------+-----+---------+-------+
1 row in set (0.00 sec)
And pahabol lang... Kaya hindi pumupunta sa second line yan, dahil di naman naka-word wrap yung textarea...
Cheers,
Chris
Eto pala yung html code nung textarea na comments... naka-set sa 255
yung maxlength ng textarea...
<textarea rows="10" id="comments" name="comments" maxlength="255" class="form-control ng-pristine ng-empty ng-invalid ng-invalid-required ng-touched textarea input-disabled note-editor note-editor-margin" style="resize:none; width: 100%;" disabled><?=$comments?></textarea>
Cheers,
Chris
- File comments1.png comments1.png added
- Status changed from Feedback to Closed
- Assignee changed from Tristan Kendrick Biscocho to Chris Lomuntad
Hi sir Chris,
Thanks for the update. This is good to go.

Also available in: Atom
PDF
Go to top