I've installed version 1.6. After loading up the samples, I've noticed that the "Show Table Borders" and "Show Details" toolbar items are initially enabled. Is it possible to customize which toolbars are enabled on startup? Thanks.
Tue, 08/03/2004 - 18:31
#1
RE: Enabling/Disabling Toolbar items
RE: Enabling/Disabling Toolbar items
For example, the following toolbar set definition displays the "Show Table Borders" and "Show Details" toolbar items initially enabled:
config.ToolbarSets["Minimal"] = [ ['ShowTableBorders','ShowDetails']
] ;
How would I create the same toolbar set, but with each toolbar item initially disabled?
RE: Enabling/Disabling Toolbar items
When I say enabled/disabled what I mean is pressed/unpressed. Sorry for any confusion. Thanks again.
RE: Enabling/Disabling Toolbar items
It seems like this should be an easy fix, but it's got me stumped. I'd appreciate any help. Thanks.
RE: Enabling/Disabling Toolbar items
//##
//## Miscelaneous
//##
config.StartupShowBorders = false ;
config.StartupShowDetails = false ;