zoukankan      html  css  js  c++  java
  • How to: Execute Custom Code when a Report is Persisted 如何:在报表持久化时执行自定义代码

    This topic describes how you can customize the ReportsStorage class. Assume you have a customized the ReportDataV2 class and added the ModifiedBy property that should return the name of the user who last edited the report layout. You need to update this property value each time a report layout is saved. For this purpose, customize the ReportsStorage and register your custom implementation. The steps below demonstrate how to do it.

    本主题介绍如何自定义报表存储类。假设您已自定义了 ReportDataV2 类,并添加了"修改者"属性,该属性应返回上次编辑报表布局的用户的名称。每次保存报表布局时,都需要更新此属性值。为此,请自定义报表存储并注册自定义实现。以下步骤演示如何执行此操作。

    Note 注意
    The approach described in this topic is not supported by the Mobile platform.
    移动平台不支持本主题中描述的方法。
    • Inherit the ReportsStorage class and override its ReportsStorage.SaveReport method.

    • 继承报表存储类并重写其报表存储.保存报表方法。

      using DevExpress.XtraReports.UI;
      using DevExpress.ExpressApp;
      using DevExpress.ExpressApp.ReportsV2;
      using DevExpress.ExpressApp.Security;
      // ...
      public class CustomReportsStorage : ReportsStorage {
          public override void SaveReport(IReportDataV2Writable reportData, XtraReport report) {
              if (reportData is MyReportDataV2) {
                  ISecurityUser currentUser = SecuritySystem.CurrentUser as ISecurityUser;
                  if (currentUser != null) {
                      ((MyReportDataV2)reportData).ModifiedBy = currentUser.UserName;
                  }
              }
              base.SaveReport(reportData, report);
          }
      }
    • Edit the Module.cs (Module.vb) file and override the ModuleBase.Setup method. In this method, assign an instance of the CustomReportsStorage to the static ReportDataProvider.ReportsStorage property.

    • 编辑Module.cs(模块.vb)文件并重写模块Base.安装程序方法。在此方法中,将自定义报表存储的实例分配给静态报表数据提供程序。报告存储属性。

      using DevExpress.ExpressApp.ReportsV2;
      // ...
      public override void Setup(XafApplication application) {
          ReportDataProvider.ReportsStorage = new CustomReportsStorage();
          base.Setup(application);
      }
  • 相关阅读:
    响应式布局和BootStrap 全局CSS样式
    javascript中的undefined与null的区别
    before(),after(),prepend(),append()等新DOM方法简介
    解决文字和text-decoration:underline下划线重叠问题
    CSS3 linear-gradient线性渐变实现虚线等简单实用图形
    用Javascript获取页面元素的位置
    rem、px、em(手机端h5页面屏幕适配的几种方法)
    用flex和rem实现移动端页面
    HTML5新增的form属性简介(转载至张鑫旭)
    vue实现图片放大
  • 原文地址:https://www.cnblogs.com/foreachlife/p/How-to-Execute-Custom-Code-when-a-Report-is-Persisted.html
Copyright © 2011-2022 走看看