Customizing the Data provider

Stimulsoft Reports.WEB discussion
Vladimir
Posts: 1462
Joined: Fri Apr 13, 2007 4:05 am
Location: Earth

Customizing the Data provider

Post by Vladimir »

Hello,

Unfortunately, the modification of the web designer in this direction is not planned. You can modify the localization file, it stores the name of the data sources (in the Database section).

To turn off all services you can use the following code:

Code: Select all

foreach (StiService service in StiConfig.Services)
{
      if (service is StiDataAdapterService) service.ServiceEnabled = false;
}
This feature will be available in the next prerelease build.

Thank you.
Post Reply