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.
how to change the size of edit window?
Moderators: Amaradana, TurboPT, TL Developers
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:
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']
] ;
it works. thank you
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;
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;