Anonymous | Login | Signup for a new account | 2019-12-13 13:08 UTC | ![]() |
Main | My View | View Issues | Change Log | My Account |
View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] | ||||||||||||
ID | Project | Category | View Status | Date Submitted | Last Update | ||||||||
0007636 | TestLink | Custom fields | public | 2016-08-09 08:22 | 2016-08-09 09:08 | ||||||||
Reporter | NOC | ||||||||||||
Assigned To | |||||||||||||
Priority | normal | Severity | minor | Reproducibility | have not tried | ||||||||
Status | new | Resolution | open | ||||||||||
Platform | OS | OS Version | |||||||||||
Product Version | 1.9.14 (2015 Q3) | ||||||||||||
Fixed in Version | |||||||||||||
Summary | 0007636: Custom field size does not increase in the UI also changed in configuration | ||||||||||||
Description | - Facing the issues that no further entries could be added to a multi-selection list I was happy to find 0002791 and the possibility to increase the custom field size by configuration. - So I increased the size in the configuration ("$tlCfg->custom_fields->max_length = 3900;") but in the UI I still could not add any further entries. - Investigating html-code, I found that the input field itself was limited: "input ... maxlen="255"". - Finally found the location in cfieldsEdit.tpl. There I replaced " <tr id="possible_values" style="display:{$display_style};"> <th style="background:none;">{$labels.possible_values}</th> <td> <input type="text" id="cf_possible_values" name="cf_possible_values" size="{#CFIELD_POSSIBLE_VALUES_SIZE#}" maxlength="{#CFIELD_POSSIBLE_VALUES_MAXLEN#}" value="{$gui->cfield.possible_values}" /> </td> </tr> " with " <tr id="possible_values" style="display:{$display_style};"> <th style="background:none;">{$labels.possible_values}</th> <td> <input type="text" id="cf_possible_values" name="cf_possible_values" size="{#CFIELD_POSSIBLE_VALUES_SIZE#}" maxlength="{$tlCfg->custom_fields->max_length}" value="{$gui->cfield.possible_values}" /> </td> </tr>" which means to take the limitation from the limitation rather from the static "input_dimensions.conf". | ||||||||||||
Tags | No tags attached. | ||||||||||||
Database (MySQL,Postgres,etc) | Postgresql | ||||||||||||
Browser | all | ||||||||||||
PHP Version | N/A | ||||||||||||
TestCaseID | |||||||||||||
QA Team - Task Workflow Status | TBD | ||||||||||||
Attached Files | |||||||||||||
![]() |
|||
Date Modified | Username | Field | Change |
2016-08-09 08:22 | NOC | New Issue | |
2016-08-09 09:08 | fman | QA Team - Task Workflow Status | => TBD |
2016-08-09 09:08 | fman | Description Updated | View Revisions |
Copyright © 2000 - 2019 MantisBT Team |