Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
<StiBlazorDesigner Report="@Report" OnSaveReport="@OnSaveReport" />
@code {
private StiReport Report;
protected override void OnInitialized()
{
this.Report = new StiReport();
this.Report.Load("Reports/TwoSimpleLists.mrt");
}
private void OnSaveReport(StiSaveReportEventArgs args)
{
args.Report.Save("Reports/TwoSimpleLists.mrt");
}
}The OnSaveReport callback receives the edited report through args.Report; here it is saved back to a file, but you can store it in a database or any other location.