Page 1 of 1

Catching "Save As" action from report

Posted: Thu Dec 31, 2020 7:50 am
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.

Re: Catching "Save As" action from report

Posted: Mon Jan 04, 2021 9:46 pm
by Lech Kulikowski
Hello,

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

Thank you.