Syncfusion Report Designer定制

时间:2019-02-11 07:33:12

标签: jquery asp.net syncfusion report-designer

我们如何从SyncFusion Report设计器中获取RDL内容? 如何通过RDL内容加载Syncfusion resport设计器(没有外部文件,只有RDL xml)。

var designer = $('#ReportDesigner1').data('ejReportDesigner'); //How will I get RDL content from this? designer.openReport('/Catagory2/Tickets Sales Analysis'); // Instead of physical file how do i pass RDL content and load design..

1 个答案:

答案 0 :(得分:1)

您可以找到以下示例,使用Web报表设计器中的“外部服务器”从RDL XML内容保存或打开报表,

http://www.syncfusion.com/downloads/support/directtrac/general/ze/ReportDesignerSample-193940820.zip

注意:在上面的示例中,我们使用了外部服务器来使用外部服务器将现有报告RDL XML内容打开/编辑/保存到DB。

请使用以上示例中的“从服务器打开并另存为->到服务器”选项打开并保存到数据库。

样品详细信息:

  1. 您可以找到下面的示例数据库,该数据库用于使用上述示例在数据库中存储RDL XML内容, http://www.syncfusion.com/downloads/support/directtrac/general/ze/ExternalServer-1188543789.zip
  2. 上面示例中的
  3. ExternalServer Class文件包含用于将RDL报告内容打开/保存到数据库的代码。
  4. 上面示例中的
  5. SQLDataHelper类文件包含与SQL Server建立连接以访问已共享的ExternalServer数据库的代码。