Search found 19 matches

by namhung1986
17 Nov 2012, 16:11
Forum: Help
Topic: [Help] Make link under number in summary page
Replies: 1
Views: 2061

Re: [Help] Make link under number in summary page

Admins! Please help me!
by namhung1986
15 Nov 2012, 08:42
Forum: Help
Topic: [Help] Make link under number in summary page
Replies: 1
Views: 2061

[Help] Make link under number in summary page

Hi, I would like to make a link under numbers in summary by date.

http://img39.imageshack.us/img39/6751/summaryzg.jpg

Uploaded with ImageShack.us

$t_resolved_bugs_link = '<a class="subtle" href="'
. config_get( 'bug_count_hyperlink_prefix' )
. '&do_filter_by_date=on'
. '&start_year ...
by namhung1986
10 Oct 2012, 03:40
Forum: Help
Topic: Adding due date feature in mantis
Replies: 5
Views: 5944

Re: Adding due date feature in mantis

I made it. In addition, if anyone wants to discover how to adding due date feature in mantis, you can contact me at my skype valentineday_vnn2004.
Thank you for your help!
by namhung1986
10 Oct 2012, 03:36
Forum: Help
Topic: adding mantis_bug_history_table.date_modified into viewIssue
Replies: 6
Views: 5772

Re: adding mantis_bug_history_table.date_modified into viewI

var_dump($p_row['date_modified']) = null

because I was using aggregate function MAX($t_mantis_bug_history_table_name.date_modified). This makes the returned column name '' (empty) instead of
'date_modified'. Then I have to use a trick in print function to get data. I made it. Thank you atrol and ...
by namhung1986
08 Oct 2012, 06:51
Forum: Help
Topic: adding mantis_bug_history_table.date_modified into viewIssue
Replies: 6
Views: 5772

Re: adding mantis_bug_history_table.date_modified into viewI

var_dump($p_row['date_modified']) = null

Since it gets null, it displays the default date Jan-01-70, even i can get the data. Here is my screen:

http://imageshack.us/a/img835/4606/datar.jpg

Uploaded with ImageShack.us

This is my revision in filter_api.php. Mantis_group_table and

$t_where ...
by namhung1986
08 Oct 2012, 06:17
Forum: Help
Topic: Adding due date feature in mantis
Replies: 5
Views: 5944

Re: Adding due date feature in mantis

Hi cas,

I almost do it. I added a custom field in Manage Custom Field named Due Date and can display it in (bug_update_advanced_page.php) and also in (bug_update_page.php), then can save.

However, when I try to display Due Date in View_all_bug_page.php, it just shows the value like 1354752000.
I ...
by namhung1986
08 Oct 2012, 05:04
Forum: Help
Topic: adding mantis_bug_history_table.date_modified into viewIssue
Replies: 6
Views: 5772

Re: adding mantis_bug_history_table.date_modified into viewI

Hi,

Thanks for your reply Atrol!

Indeed, I want to get the most current Status Modified Date by select the max (date_modified) of field_name 'Status 'in mantis_bug_history_table.
I adjusted filter_api.php (change select and join clause)and could get out the result (by var_dump the query result to ...
by namhung1986
04 Oct 2012, 06:26
Forum: Help
Topic: adding mantis_bug_history_table.date_modified into viewIssue
Replies: 6
Views: 5772

adding mantis_bug_history_table.date_modified into viewIssue

Hi, once again I am calling for your help ^_^

Please show me how to add date_modified from mantis_bug_history_table into view issue page as a new column.

I am trying to adjust filter_api.php, but I got failed. Could you please help me?

Thank you so much!

I am using Mantis version 1.1.8.
by namhung1986
01 Oct 2012, 02:06
Forum: Help
Topic: Adding due date feature in mantis
Replies: 5
Views: 5944

Re: Adding due date feature in mantis

Thanks Cas!

However, our company headquarter is using Mantis 1.1.8 with a lot customization. I am afraid that we will lost all of them when we upgrade to 1.2.11.
Do you have any plugin or way to change code to add due date feature?
Thank you in advance! Any help would be appreciated!
by namhung1986
28 Sep 2012, 09:49
Forum: Help
Topic: Adding due date feature in mantis
Replies: 5
Views: 5944

Adding due date feature in mantis

Hi,

I would like to add due_date field to the issue table and also want to display it in all output screens:
View Issues page
Print Issues page
Issue View Advanced page
Issue Update Advanced page
CSV export
Excel export
Word export

I am using mantis 1.1.8.
Thank you in advance for your ...
by namhung1986
27 Sep 2012, 07:46
Forum: Help
Topic: Add selection list User Roles in adding users to a project
Replies: 14
Views: 10933

Re: Add selection list User Roles in adding users to a proje

thank you atrol and cas for your help!
I made it:)
by namhung1986
25 Sep 2012, 10:34
Forum: Help
Topic: Add selection list User Roles in adding users to a project
Replies: 14
Views: 10933

Re: Add selection list User Roles in adding users to a proje

Could you please explain the meaning of this in .diff file?

@@ -443,7 +443,6 @@
</tr>
<?php } ?>

-
<!-- Submit Button -->
<tr>
<td class="center" colspan="6">

Does it mean that I should navigate to row 443, count down and select 7 rows after that. Then I replace them with
</tr>
<?php ...
by namhung1986
25 Sep 2012, 04:38
Forum: Help
Topic: Add selection list User Roles in adding users to a project
Replies: 14
Views: 10933

Re: Add selection list User Roles in adding users to a proje

Could you please show me how to implement it? It has been taking me 3 hours. I copy .php files and create databse already, but I do not know how to do with the .diff file.
Thank you so much!
by namhung1986
24 Sep 2012, 07:54
Forum: Help
Topic: Add selection list User Roles in adding users to a project
Replies: 14
Views: 10933

Re: Add selection list User Roles in adding users to a proje

Thank you for your help, atrol!

These are examples of Roles.

- An administrator role can have access level administrator in this project, but still can have access level developer in another project.
- A Developer Role can have access level developer in a project, but still can have access level ...
by namhung1986
24 Sep 2012, 06:42
Forum: Help
Topic: Add selection list User Roles in adding users to a project
Replies: 14
Views: 10933

Re: Add selection list User Roles in adding users to a proje

hi, my boss is persistently asking me to create "Role" like the description picture (please refer to the first post).
In fact, I tried to create a Role table in Mantis database, get data, but I could not display the data as a selection list on HTML.
Plzz help me!