Changing layout New Test Case page

1.8 related questions and discussions.
Please upgrade to LATEST 1.9.x.
No more fixes for 1.8.

Moderators: Amaradana, TurboPT, TL Developers

Locked
marty
Advanced user
Posts: 26
Joined: Tue Feb 14, 2006 6:22 pm

Changing layout New Test Case page

Post by marty »

Hello,

I was wondering if this is possible to change the layout easily of the
page when you click on create test case.

Currently the Expected Results edit window is underneath the Steps window.

I wanted to have them next to each other instead.

Steps | Expected Results

Thanks,

martin
shm2bk
Advanced user
Posts: 29
Joined: Sun Jun 08, 2008 3:28 pm

Post by shm2bk »

Modify the config-file: testlink\config.inc.php
Here you can configure the layout of the Testcases.

// 'horizontal' -> step and results on the same row
// 'vertical' -> steps on one row, results in the row bellow

$g_spec_cfg->steps_results_layout = 'horizontal';

Thats all.
After this configuration-modification you have to delete your Browser Cache.
After this, your modification works.
marty
Advanced user
Posts: 26
Joined: Tue Feb 14, 2006 6:22 pm

Post by marty »

Exactly what I needed :) Thanks a lot!
edias
Advanced user
Posts: 34
Joined: Mon Jun 08, 2009 8:59 pm

Post by edias »

shm2bk wrote:Modify the config-file: testlink\config.inc.php
Here you can configure the layout of the Testcases.

// 'horizontal' -> step and results on the same row
// 'vertical' -> steps on one row, results in the row bellow

$g_spec_cfg->steps_results_layout = 'horizontal';

Thats all.
After this configuration-modification you have to delete your Browser Cache.
After this, your modification works.
Thanks for this very nice and useful tip!

I would have not thought of it ;)
Locked