This example shows how to load the report template and print it from code. You need to create the report object of the StiReport type, then load the report template file by calling the loadFile() method. After this, you can render the report by calling the renderAsync() method of the report object and print it by calling the print() method. The system print dialog should appear:
<script type="text/javascript">
	// Create a new report instance
	var report = new Stimulsoft.Report.StiReport();
	// Load report from url
	report.loadFile("../reports/SimpleList.mrt");
	// Render report
	report.renderAsync(function () {
		// Print report using web browser
		report.print();
	
		document.write("Complete.");
	});
</script>

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

Printing the Report

Используя этот сайт, вы соглашаетесь на использование файлов Cookie для аналитики и персонализированного контента. Файлы Cookie хранят полезную информацию на вашем компьютере, чтобы помочь нам повысить эффективность и удобство использования. Для получения дополнительной информации, пожалуйста, прочтите Конфиденциальность и Использование Cookie.