Hi Guys
Not sure this is a feature request - more a "I can't find the parameter"
Is there any way to make the "Actions" bar (for test spec etc) always show, rather than having to click it each time user wants to edit test case or similar?
Regards
[SOLVED] Configure "actions" to always show
Moderators: Amaradana, TurboPT, TL Developers
Re: Configure "actions" to always show
Try to go to mantis site and search on http://mantis.testlink.org/changelog_page.php
let me know if you can find something useful
let me know if you can find something useful
Re: Configure "actions" to always show
Found it on the change log page - many thanks (I searched through Mantis but clearly wasn't using the right terms)
For anyone who wants to know
NEW CONFIG option
http://mantis.testlink.org/view.php?id=6361
For anyone who wants to know
NEW CONFIG option
Code: Select all
/**
* controls if operation area (buttons) starts open ('' or 'inline') or closed ('none') on:
* - test suite management
* - test case management
* - req. spec management
* - req. management
*/
$tlCfg->gui->op_area_display = new stdClass();
// test_spec_container => test project, test suite
$tlCfg->gui->op_area_display->test_spec_container = 'none'; // ''
$tlCfg->gui->op_area_display->test_case = 'none'; // 'inline'
$tlCfg->gui->op_area_display->req_spec_container = 'none'; // 'inline'
$tlCfg->gui->op_area_display->req = 'none'; // 'inline'