Search found 6 matches

by ktang
14 Sep 2006, 13:48
Forum: Help
Topic: Customizing columns through the web?
Replies: 2
Views: 4172

Thank you starkeus. The article in the Wiki explains the way to do that in detail.
by ktang
14 Sep 2006, 10:09
Forum: Help
Topic: Customizing columns through the web?
Replies: 2
Views: 4172

Customizing columns through the web?

Hello Fellow,

It's one of the highlights of Mantis 1.1 to customize columns for view/print/csv issues through the web interface. However, I just can't find that page to customize the columns. Anyone can tell me how to navigate to that page?

Thanks,
Ktang
by ktang
19 Mar 2006, 16:38
Forum: Customizations
Topic: custom field as text-array like description or add.-info.
Replies: 2
Views: 6714

The way I did that explained in the following post:

http://forums.mantisbt.org/viewtopic.php?t=1224
by ktang
18 Mar 2006, 17:11
Forum: Help
Topic: CSV export help
Replies: 12
Views: 18903

Tried the way webwesen did. It does works well.

However, I got a new problem. Lines will not be broke in the exported .csv file if the reporter uses hard return to make sentences/strings in lines in the Summary field. Open the .csv file in MS Excel, layout would be in a mess with "<br />" there ...
by ktang
17 Mar 2006, 15:53
Forum: Customizations
Topic: Make Custom Fields Word Wrap Vertically?
Replies: 1
Views: 6230

Think I got it.

Repalcing line 1199 to line 1205 with the following codes does good to me:

echo '<textarea type="text" name="custom_field_' . $t_id . '" cols="80" rows="3" wrap="virtual"';
if( 0 < $p_field_def['length_max'] ) {
echo ' maxlength="' . $p_field_def['length_max'] . '"';
} else ...
by ktang
17 Mar 2006, 15:15
Forum: Customizations
Topic: Make Custom Fields Word Wrap Vertically?
Replies: 1
Views: 6230

Make Custom Fields Word Wrap Vertically?

Sometimes our reporters have to input many words in the Custom Fields.
Is there any possibilities that Custom Fields would be able to be wrapped vertically as necessary just like "Description" textbox?

Tried to look for a hint in

Code: Select all

custom_field_api.php
, but not having any luck.