Project

General

Profile

Actions

Feature #27672

closed

Show selected columns in gantt chart

Added by Mizuki ISHIKAWA over 6 years ago. Updated almost 5 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
Gantt
Target version:
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:
Fixed

Description

I would like to select and show the necessary columns like issues/index.


Files

gantt_plan.png (248 KB) gantt_plan.png Mizuki ISHIKAWA, 2017-11-29 05:32
0002-Add-switch-the-display-for-selected-column.patch (7.12 KB) 0002-Add-switch-the-display-for-selected-column.patch Mizuki ISHIKAWA, 2018-02-23 08:03
0001-Show-selected-columns-on-gantt.patch (12.1 KB) 0001-Show-selected-columns-on-gantt.patch Mizuki ISHIKAWA, 2018-02-23 08:03
gantt.png (327 KB) gantt.png Mizuki ISHIKAWA, 2018-02-23 08:03
0003-Fix-changeable-items-on-the-queries-form.patch (4.13 KB) 0003-Fix-changeable-items-on-the-queries-form.patch Mizuki ISHIKAWA, 2018-03-19 09:26
0001~0003.patch (18.5 KB) 0001~0003.patch Mizuki ISHIKAWA, 2018-11-09 09:22
0001~0003-v2.patch (22.1 KB) 0001~0003-v2.patch Mizuki ISHIKAWA, 2019-04-24 06:43
0001~0003-v3.patch (21.9 KB) 0001~0003-v3.patch Mizuki ISHIKAWA, 2019-05-16 02:54
0001~0003-v4.patch (22.1 KB) 0001~0003-v4.patch Mizuki ISHIKAWA, 2019-05-16 04:07
duplicate-tracker@2x.png (27.6 KB) duplicate-tracker@2x.png Go MAEDA, 2019-05-16 05:03
fix-broken-style.patch (1.94 KB) fix-broken-style.patch Mizuki ISHIKAWA, 2019-05-17 02:48
ScreenShot-2019-05-17-9.27.26.png (97.8 KB) ScreenShot-2019-05-17-9.27.26.png Mizuki ISHIKAWA, 2019-05-17 02:49
ScreenShot-2019-05-17-9.28.27.png (124 KB) ScreenShot-2019-05-17-9.28.27.png Mizuki ISHIKAWA, 2019-05-17 02:49
fix-broken-style-v2.patch (2.15 KB) fix-broken-style-v2.patch Mizuki ISHIKAWA, 2019-05-17 03:26

Related issues

Related to Redmine - Feature #26409: Show assignee on ganttClosed

Actions
Related to Redmine - Patch #32019: Remove unnecessary scroll indicator from Gantt pageClosedGo MAEDA

Actions
Related to Redmine - Defect #33082: Links in the last column in gantt are unclickableClosedGo MAEDA

Actions
Related to Redmine - Defect #33724: Selected gantt columns are not displayed with MS Edge LegacyClosedGo MAEDA

Actions
Actions #1

Updated by Akipii Oga over 6 years ago

+1

Actions #2

Updated by Mizuki ISHIKAWA about 6 years ago

In the current Gantt chart, you can see information on the issue by using tooltips.
However, I would like to see that information without having to move the cursor.

I tried to write code to realize this feature.
0001-Show-selected-columns-on-gantt.patch increases the number of columns of the Gantt chart based on the column set to Query like the issues/index.
0002-Add-switch-the-display-for-selected-column.patch adds the ability to turn column display on or off (default is off).

Actions #3

Updated by Mischa The Evil about 6 years ago

Actions #4

Updated by Go MAEDA about 6 years ago

This is a very interesting patch.

But I found that selected columns cannot be saved in a custom query. The behavior is inconsistent with issues list.

Actions #5

Updated by Mizuki ISHIKAWA about 6 years ago

Thank you for reviewing, Go MAEDA.

Go MAEDA wrote:

This is a very interesting patch.

But I found that selected columns cannot be saved in a custom query. The behavior is inconsistent with issues list.

I think that the problem can be solved by the attached 0003-Fix-changeable-items-on-the-queries-form.patch.
When saving the custom query from the Gantt chart, it was not possible to change the selected column, so we made it changeable.

Actions #6

Updated by Xiaofei Zheng almost 6 years ago

Hello,

Could I know the current status of this new feature?
We want to show assignee and category on gantt chart and also group by this column.

Is this feature in progress?

Best regards,
Xiaofei Zheng

Actions #7

Updated by Mizuki ISHIKAWA over 5 years ago

I fixed the patch.
  • Compatible the latest trunk. ( r17625 )
  • I put together three patch series into one.
Actions #8

Updated by Iwan Yudhistira over 5 years ago

how to run the patch in windows, thank you before

Actions #9

Updated by Mizuki ISHIKAWA over 5 years ago

Iwan Yudhistira wrote:

how to run the patch in windows, thank you before

You should be able to apply the patch in the following way.

  1. Change into your Redmine directory (the one with app, test, and config folders)
  2. Download the patch file and place it in the same directory
  3. Run patch -p1 < PATCH_NAME.patch
  4. Check the messages for any errors.

Some errors might occur because there are changes to the same areas of code. If you are familiar with merging code, you can try to merge the changes.
Maintenance is difficult, so applying the patch is not recommended.
If patches can not be applied in this way, please ask for help in the forum .

Actions #10

Updated by Go MAEDA about 5 years ago

  • Target version set to 4.1.0
Actions #11

Updated by Mizuki ISHIKAWA about 5 years ago

Compatible the latest trunk. ( r18080 )

Actions #12

Updated by Go MAEDA almost 5 years ago

  • Assignee set to Mizuki ISHIKAWA

Mizuki ISHIKAWA wrote:

Compatible the latest trunk. ( r18080 )

Thank you for updating the patch. Unfortunately, the patch cannot be applied to the trunk after r18089. Sorry for bothering you but could you update the patch again?

Actions #13

Updated by Mizuki ISHIKAWA almost 5 years ago

Go MAEDA wrote:

Mizuki ISHIKAWA wrote:

Compatible the latest trunk. ( r18080 )

Thank you for updating the patch. Unfortunately, the patch cannot be applied to the trunk after r18089. Sorry for bothering you but could you update the patch again?

I attached the updated patch.

Actions #14

Updated by Mizuki ISHIKAWA almost 5 years ago

I changed to make span.query-columns disabled if draw_selected_columns is not checked.

Actions #15

Updated by Go MAEDA almost 5 years ago

I think it is better to add :tracker to UNAVAILABLE_COLUMNS constant in lib/redmine/helpers/gantt.rb because also tracker names are shown in the subject column. What do you think?

      UNAVAILABLE_COLUMNS = [:id, :subject, :tracker]

Actions #16

Updated by Mizuki ISHIKAWA almost 5 years ago

Go MAEDA wrote:

I think it is better to add :tracker to UNAVAILABLE_COLUMNS constant in lib/redmine/helpers/gantt.rb because also tracker names are shown in the subject column. What do you think?

I think that it is fine.

Actions #17

Updated by Go MAEDA almost 5 years ago

  • Status changed from New to Closed
  • Assignee changed from Mizuki ISHIKAWA to Go MAEDA
  • Resolution set to Fixed

Committed the patch. Thank you for the great improvement.

Actions #18

Updated by Go MAEDA almost 5 years ago

  • Subject changed from Show selected columns on gantt chart to Show selected columns in gantt chart
Actions #19

Updated by Mizuki ISHIKAWA almost 5 years ago

I noticed that there is a place where the layout breaks down due to r18171.
I have attached a patch to fix the layout.

Targets of fix:

Actions #20

Updated by Go MAEDA almost 5 years ago

Mizuki ISHIKAWA wrote:

I noticed that there is a place where the layout breaks down due to r18171.
I have attached a patch to fix the layout.

I have committed the fix in r18172. Thanks.

Actions #22

Updated by Mischa The Evil over 4 years ago

  • Related to Patch #32019: Remove unnecessary scroll indicator from Gantt page added
Actions #23

Updated by Go MAEDA about 4 years ago

  • Related to Defect #33082: Links in the last column in gantt are unclickable added
Actions #24

Updated by Go MAEDA almost 4 years ago

  • Related to Defect #33724: Selected gantt columns are not displayed with MS Edge Legacy added
Actions

Also available in: Atom PDF