my_view_page - 2.5.1 Boxenlayout (old school)

Deutschsprachiges Forum für Diskussionen und Fragen zu MantisBT

Moderators: Developer, Contributor

Post Reply
MARVion
Posts: 7
Joined: 02 Aug 2017, 13:36

my_view_page - 2.5.1 Boxenlayout (old school)

Post by MARVion »

Hi,

wir hatten bisher v1.2.11 in Betrieb und sind direkt auf 2.5.1 umgestiegen.
Nun hat sich die Anordnung der Boxen (Mir zugewiesen, nicht zugewiesen...) von früher nebeneinander, zu untereinander mit Timeline geändert.
Ein ähnliches Thema fand ich hier schon mal: https://www.mantisbt.org/bugs/view.php?id=20120

Gibt es eine einfache Möglichkeit diese Ansicht wieder auf "old school" umzustellen? Welche css-Parameter müssten hierzu geändert werden, oder gibt es ein Plugin, welches ich übersehen habe?
Die Timeline konnte ich auskommentieren, eine Änderung der Variablen die in dem Ticket oben beschrieben sind, hat zu keiner Änderung geführt.

Danke für jede Hilfe,

MARV
atrol
Site Admin
Posts: 8366
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: my_view_page - 2.5.1 Boxenlayout (old school)

Post by atrol »

MARVion wrote: Die Timeline konnte ich auskommentieren
Auskommentieren?
Die saubere Lösung wäre, die folgende Zeile in config_inc.php hinzuzufügen

Code: Select all

$g_timeline_view_threshold = NOBODY;
Please use Search before posting and read the Manual
MARVion
Posts: 7
Joined: 02 Aug 2017, 13:36

Re: my_view_page - 2.5.1 Boxenlayout (old school)

Post by MARVion »

Hi atrol,

vielen Dank, ich habe den Kommentar herausgenommen und die Variable wie angegeben gesetzt.
atrol wrote:
MARVion wrote: Die Timeline konnte ich auskommentieren
Auskommentieren?
Die saubere Lösung wäre, die folgende Zeile in config_inc.php hinzuzufügen

Code: Select all

$g_timeline_view_threshold = NOBODY;
Zusätzlich habe ich in config_inc.php noch

Code: Select all

$g_my_view_boxes_fixed_position = OFF;
gesetzt, weil ich mir erhoffte, dass ich die Anordnung der Boxen wie im referenzierten Ticket verändern könnte, dies war aber leider nicht erfolgreich.

Gibt es weitere Tipps, wie ich die Anordnung der Boxen (Zugewiesen / Nicht zugewiesen,...) beeinflussen kann?

Danke und Grüße!
MARVion
Posts: 7
Joined: 02 Aug 2017, 13:36

Re: my_view_page - 2.5.1 Boxenlayout (old school)

Post by MARVion »

Niemand mit Ideen oder kreativen Lösungsvorschlägen?
MARVion
Posts: 7
Joined: 02 Aug 2017, 13:36

Re: my_view_page - 2.5.1 Boxenlayout (old school)

Post by MARVion »

Push...
Wäre für unseren Workflow wirklich wichtig. Oder die konkrete Aussage, dass es eben nicht geht oder nicht ohne Weiteres geht
MARVion
Posts: 7
Joined: 02 Aug 2017, 13:36

Re: my_view_page - 2.5.1 Boxenlayout (old school)

Post by MARVion »

As for all of you who might have this issue, I resolved it by myself.

Due to this thread: viewtopic.php?f=4&t=23941
I changed the order of the different boxes in /config/config.inc to


$g_my_view_boxes = array (
'assigned' => '1',
'reported' => '2',
'recent_mod' => '3',
'feedback' => '4',
'my_comments' => '5',
'unassigned' => '6',
'resolved' => '7',
'monitored' => '8',
'verify' => '0'
);

this caused, what I wanted to happen: to have not_assigned box right next to assigned, as you can see in the picture.

Note: this is necessary as the my_view_page.inc breaks after half of the to-be-shown-boxes and closes the <div> for the left side and opens another <div> for the right column.
Attachments
mantis old school layout.jpg
mantis old school layout.jpg (177.12 KiB) Viewed 5525 times
Post Reply