Search found 10 matches

by kec161
11 Sep 2006, 13:16
Forum: Help
Topic: Help with Creating Custom Buttons
Replies: 0
Views: 2498

Help with Creating Custom Buttons

Does anyone have experience creating custom buttons?

We have a field called QA Reviewed that has the options Approved and Rejected. I'd like to add a button to the top of the Advanced View Details page where I could click it and it would set the custom QA Reviewed field to Approved. This would ...
by kec161
08 Sep 2006, 15:04
Forum: Customizations
Topic: Help with Creating Custom Buttons
Replies: 1
Views: 5879

Help with Creating Custom Buttons

I could use some help creating custom buttons.

We have a field called QA Reviewed that has the options Approved and Rejected. I'd like to add a button to the top of the Advanced View Details page where I could click it and it would set the QA Reviewed field to Approved. This would replace me ...
by kec161
05 May 2006, 17:12
Forum: Customizations
Topic: Creating a my view filter that will filter on custom fields
Replies: 4
Views: 11951

Figured it out.

I figured out what I was doing wrong. I was suppose to put the numeric id of the field not the field name. The following works (it goes in the my_view_inc.php file):


$unit_tester_field_id = 16;
$unit_test_status_field_id = 31;
$ready_testing_text = "Ready for Testing";
$username = current ...
by kec161
04 May 2006, 19:45
Forum: Customizations
Topic: Creating a my view filter that will filter on custom fields
Replies: 4
Views: 11951

Thanks for the reply! I was busy doing other stuff and finally got around to trying your suggestions but it still doesn't work correctly.

FYI - Using spaces in custom field names is actually valid (see http://forums.mantisbt.org/viewtopic.php?t=28&highlight=).

Also, the = in
$url_link_parameters ...
by kec161
19 Apr 2006, 11:46
Forum: Help
Topic: Trying to modify my_view_page.php to use a custom filter.
Replies: 1
Views: 3791

Trying to modify my_view_page.php to use a custom filter.

How would I go about creating a filter on the my_view_page.php that filters on a custom field?

I have a field called Unit Tester that contains the name of the developer that tested the code.

1. I've modified config_inc.php to add a new view box:

$g_my_view_boxes = array (
'assigned' => '1 ...
by kec161
18 Apr 2006, 14:06
Forum: Customizations
Topic: Creating a my view filter that will filter on custom fields
Replies: 4
Views: 11951

Any help at all would be appreciated. I could figure it out if someone pointed me in the right direction.
by kec161
07 Apr 2006, 19:43
Forum: Customizations
Topic: Creating a my view filter that will filter on custom fields
Replies: 4
Views: 11951

Creating a my view filter that will filter on custom fields

How would I go about creating a filter on the my_view_page.php that filters on a custom field?

I have a field called Unit Tester that contains the name of the developer that tested the code.

1. I've modified config_inc.php to add a new view box:

$g_my_view_boxes = array (
'assigned' => '1 ...
by kec161
20 Feb 2006, 15:14
Forum: Help
Topic: Adding bugnotes to csv export
Replies: 0
Views: 3106

Adding bugnotes to csv export

How can I add the bugnotes to the csv export? I tried modifying the COLUMNS_TARGET_CVS_PAGE part of the custom_function_default_get_columns_to_view function in core/custom_function_api.php.

I tried setting $t_columns[] equal to 'bugnotes', 'bugnote', 'bug notes', 'bug note', 'notes' and 'note' with ...
by kec161
25 Jan 2006, 16:41
Forum: Help
Topic: Disallow developers to change status from Closed to Feedback
Replies: 1
Views: 3930

Disallow developers to change status from Closed to Feedback

I do not want our developers to be able to change the status of closed bugs from closed to any other status. I disabled "Reopen an issue" and "Allow Reporter to re-open Issue" from the Workflow Thresholds page. The Re-open button no longer appears, but they are still able to Change Status to ...