Excuse me for my english...
What enlarge the amount a sign in user field.
Created the field. The Type Enumeration.
IN Possible Values- comes short place.
Mantis ver 1.0.6
Custom Fields -enlarge size of possible Values
Moderators: Developer, Contributor
Sorry I don't understand what you want.
Want more plugins to customize Mantis?
=> http://deboutv.free.fr/mantis/
Mantis: 1.1.0, 1.1.0a2
PHP: 5.0.4
SQL: MySQL 5.0.19
OS: Linux
=> http://deboutv.free.fr/mantis/
Mantis: 1.1.0, 1.1.0a2
PHP: 5.0.4
SQL: MySQL 5.0.19
OS: Linux
I think I get what gilina_tp was asking for, as I just ran into this.
The 'possible_values' field is limited to 255 characters, in both the db schema and the HTML form element. I needed more than that, as I couldn't even get ten of the options I needed to fit.
My solution:
I'm all about clean UI, but c'mon guys - 255 characters is a little on short side for a field that is by definition meant to hold multiple values.
I would argue any enum/list-oriented fields should be reasonable large, variable-length data types by default.
Any chance that'll make it into the trunk?
-Foo
The 'possible_values' field is limited to 255 characters, in both the db schema and the HTML form element. I needed more than that, as I couldn't even get ten of the options I needed to fit.
My solution:
- Change mantis_custom_field_table.possible_values from type VARCHAR(255) to type TEXT.
- Edit line #69 of manage_custom_field_edit_page.php so that the maxlength attribute is reasonably large (several thousand, anyways).
I'm all about clean UI, but c'mon guys - 255 characters is a little on short side for a field that is by definition meant to hold multiple values.
I would argue any enum/list-oriented fields should be reasonable large, variable-length data types by default.
Any chance that'll make it into the trunk?
-Foo
If it is that, I have developped a plugin named LongCF to increase the size of the custom fields (and other things).
Want more plugins to customize Mantis?
=> http://deboutv.free.fr/mantis/
Mantis: 1.1.0, 1.1.0a2
PHP: 5.0.4
SQL: MySQL 5.0.19
OS: Linux
=> http://deboutv.free.fr/mantis/
Mantis: 1.1.0, 1.1.0a2
PHP: 5.0.4
SQL: MySQL 5.0.19
OS: Linux