Actions
Bug #7633
closednewgocev4 (character limit on comment section too low)
Start date:
09/09/2019
Due date:
% Done:
0%
Estimated time:
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
Updated by Wittie Manansala over 5 years ago
- Subject changed from character limit on comment section too low to newgocev4 (character limit on comment section too low)
- Category set to Bugs
Updated by Chris Lomuntad over 5 years ago
- 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)
Updated by Chris Lomuntad over 5 years ago
And pahabol lang... Kaya hindi pumupunta sa second line yan, dahil di naman naka-word wrap yung textarea...
Cheers,
Chris
Updated by Chris Lomuntad over 5 years ago
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
Updated by Levy Ryan Nolasco over 5 years ago
- 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.
Actions
Go to top