Catching "Save As" action from report
Posted: Thu Dec 31, 2020 7:50 am
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.
This is where controller checks the action and I couldn't find what triggers Save As. Any help will be appreciated.
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();
}
}