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
Changing layout New Test Case page
Moderators: Amaradana, TurboPT, TL Developers
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.
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!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.
I would have not thought of it
