Hi!
I have 2 questions...
is it possible disable new data source button in wizard window?
And... can i disable a specific type of report in wizard window?
thanks
:biggrin:
Disable New Datasource Button in Wizard
Disable New Datasource Button in Wizard
Hello,
Please check the latest build when it will be available.
Thank you.
Unfortunately, it is impossible.AndyDroid wrote:is it possible disable new data source button in wizard window?
We made some improvements in that directionAndyDroid wrote:And... can i disable a specific type of report in wizard window?
Please check the latest build when it will be available.
Code: Select all
StiServiceContainer wizards = StiConfig.Services.GetServices(typeof(StiWizardService));
foreach (StiWizardService service in wizards)
{
if (service is StiLabelWizardService || service is StiMasterDetailWizardService)
service.ServiceEnabled = false;
else
service.ServiceEnabled = true;
}