Find the following steps to open server report using report path on opening Report Designer.
Create a function and bind it with the create
API in Index.cshtml
file as like in below code snippet.
<bold-report-designer id="designer" create="controlInitialized"></bold-report-designer>
<script type="text/javascript">
function controlInitialized(args) {
...
}
</script>
Use the openReport
method in the function along with report path that was previously created, as like in below code snippet.
function controlInitialized(args) {
var designer = $('#designer').data('boldReportDesigner');
designer.openReport("/Sample Reports/Sales Report");
}