This example shows how to load reports in different formats and show it in the viewer. The report can be stored in the next formats: report template (.mrt file), report document (.mdc file), compiled report class (.cs or .dll file). Any of these formats can be loaded and showed in the report viewer.

First, you need to add the StiNetCoreViewer component to the view page. Also you need to pass the StiNetCoreViewerOptions object to the constructor. The minimum required options are two actions - GetReport and ViewerEvent, they are located in the Actions options group:
@using Stimulsoft.Report.Mvc;

...

@Html.StiNetCoreViewer(new StiNetCoreViewerOptions()
{
	Actions =
	{
		GetReport = "GetReport",
		ViewerEvent = "ViewerEvent"
	}
})

To demonstrate the loading reports in different formats, add links on a web page. To report definition using the id parameter in the link:
<table>
	<tr>
		<td class="reports" valign="top">
			<div style="width: 150px;">
				@Html.ActionLink("Simple List", "Index", new { id = "1" })
				<br />Report Snapshot
				
				<br /><br />
				@Html.ActionLink("Two Simple Lists", "Index", new { id = "2" })
				<br />Report Template
				
				<br /><br />
				@Html.ActionLink("Master Detail", "Index", new { id = "3" })
				<br />Compiled Report Class
				
				<br /><br />
				@Html.ActionLink("Selecting Country", "Index", new { id = "4" })
				<br />Compiled Report Class
			</div>
		</td>
		<td style="width: 100%;" valign="top">
			@Html.StiNetCoreViewer(new StiNetCoreViewerOptions()
			{
				Actions =
				{
					GetReport = "GetReport",
					ViewerEvent = "ViewerEvent"
				}
			})
		</td>
	</tr>
</table>

In the options above we define two actions, and we need to add it to the method.

The OnPostGetReport action loads the report depending on the id parameter of the URL, and returns an answer to the client part of the viewer using the GetReportResult() static method. In the parameters of this method, the report object should be passed:
public IActionResult OnPostGetReport(int id = 1)
{
	// Create the report object
	var report = new StiReport();

	// Load report
	switch (id)
	{
	// Load report snapshot
	case 1:
		report.LoadDocument(StiNetCoreHelper.MapPath(this, "Reports/SimpleList.mdc"));
		break;

	// Load report template
	case 2:
		report.Load(StiNetCoreHelper.MapPath(this, "Reports/TwoSimpleLists.mrt"));
		break;

	// Load compiled report class
	case 3:
		report = new StiMasterDetail();
		break;

	// Load compiled report class
	case 4:
		report = new StiParametersSelectingCountryReport();
		break;
	}

	// Load data from JSON file for report template
	if (!report.IsDocument)
	{
		var data = StiJsonToDataSetConverterV2.GetDataSetFromFile(StiNetCoreHelper.MapPath(this, "Data/Demo.json"));
		report.Dictionary.Databases.Clear();
		report.RegData(data);
	}

	return StiNetCoreViewer.GetReportResult(this, report);
}

The ViewerEvent action handles all the viewer events (switching pages, zooming, printing, exporting, interactivity, etc.) and returns the answer to the client using the ViewerEventResult() static method. Also this action used to load the scripts of the viewer component:
public IActionResult OnPostViewerEvent()
{
	return StiNetCoreViewer.ViewerEventResult(this);
}

public IActionResult OnGetViewerEvent()
{
	return StiNetCoreViewer.ViewerEventResult(this);
}

На скриншоте ниже Вы можете увидеть результат выполнения данного кода:

Showing a Report in the Viewer

By using this website, you agree to the use of cookies for analytics and personalized content. Cookies store useful information on your computer to help us improve efficiency and usability. For more information, please read the privacy policy and cookie policy.