Catching "Save As" action from report

Stimulsoft Reports.WEB discussion
Post Reply
hakanaliyasdi
Posts: 1
Joined: Thu Dec 31, 2020 7:34 am

Catching "Save As" action from report

Post by hakanaliyasdi »

Hello.

I have been modifying Angular designer sample to catch save action to write the report in MongoDB on dotnet core backend. I was able to catch Save action, but I couldn't figure out how to catch "Save As" action.

Code: Select all

if (requestParams.Component == StiComponentType.Designer)
            {
                switch (requestParams.Action)
                {
                    case StiAction.GetReport:
                        return GetReport();

                    case StiAction.SaveReport:
                        return SaveReport();
                }
            }
This is where controller checks the action and I couldn't find what triggers Save As. Any help will be appreciated.
Lech Kulikowski
Posts: 6244
Joined: Tue Mar 20, 2018 5:34 am

Re: Catching "Save As" action from report

Post by Lech Kulikowski »

Hello,

Please check the following article:
https://www.stimulsoft.com/en/documenta ... report.htm

Thank you.
Post Reply