how to change the size of edit window?

Ask community to help.

Moderators: Amaradana, TurboPT, TL Developers

Post Reply
ccc123
TestLink user
Posts: 10
Joined: Wed Oct 14, 2009 11:18 pm

how to change the size of edit window?

Post by ccc123 »

trying to edit test suite, test plan or test cases,

the default size of each sections are too small for big screen.
how to change the size? just like the other post to change height of navigation tree.
havlatm
Member of TestLink Community
Posts: 940
Joined: Mon Oct 31, 2005 1:24 am
Location: Czech

Post by havlatm »

Enable a button 'FitWindow' in toolbar that allow you enlarge the area over whole window.
Edit: testlink/cfg/tl_fckeditor_config.js

For example there is my settings:

Code: Select all

FCKConfig.ToolbarSets["tl_default"] = [
	['Cut','Copy','Paste','PasteText','PasteWord','RemoveFormat','-',
	'Undo','Redo','Find','Replace','SelectAll','-',
	'Anchor','Link','Unlink','Image','Table','Rule','-','Source','FitWindow'],
	'/',['Style','FontName','FontSize','-',
	'Bold','Italic','Underline','TextColor','BGColor','-',
	'OrderedList','UnorderedList','Outdent','Indent','-',
	'JustifyLeft','JustifyCenter','JustifyRight','JustifyFull']
] ;
ccc123
TestLink user
Posts: 10
Joined: Wed Oct 14, 2009 11:18 pm

it works. thank you

Post by ccc123 »

thank you
here is my settings:
remember after saved the new config, clean firefox cache and cookie to make the new change working.


/*
TestLink Open Source Project - http://testlink.sourceforge.net/
$Id: tl_fckeditor_config.js,v 1.2.2.1 2009/06/07 22:03:54 havlat Exp $

Configure FCKEditor
See: http://docs.fckeditor.net/ for more information
*/

FCKConfig.ToolbarSets["tl_default"] = [
['Undo','Redo','Cut','Copy','Paste','PasteText','PasteWord','Find','Replace','SelectAll','-',
'Checkbox','Radio','TextField','Textarea','Select','Button','ImageButton','HiddenField',
'Anchor','Bold','Italic','Underline','OrderedList','UnorderedList','JustifyLeft','JustifyCenter','JustifyRight','JustifyFull','-','Subscript','Superscript'],
'/', ['FontName','FontSize','TextColor','BGColor','-','Link','Unlink','Image','Table','Rule','Source','FitWindow','Smiley','SpecialChar','Bold','Italic','Underline','StrikeThrough']
] ;

/* Just an example */
FCKConfig.ToolbarSets["tl_mini"] = [
['Anchor','Bold','Italic','Underline','OrderedList','UnorderedList','JustifyLeft'],
'/',['FontName','FontSize','TextColor','BGColor','-','Table','Rule']
] ;

/* Disable a server browsing */
FCKConfig.LinkBrowser = false;
FCKConfig.LinkUpload = false;
Post Reply