提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
原创|使用教程|编辑:郑恭琳|2017-11-21 18:01:37.000|阅读 557 次
概述:在本文中,我将讨论新功能 - 在程序代码中更改在线设计器的配置。 实际上,我们将覆盖设计器的配置文件,这是一个json格式的文档。 该功能在2017.3.3版本中已经实现。 此功能可用于更改设计器的设计和其他参数。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
相关链接:
从FastReport网站下载Online Designer之前,您必须先编译它。为此,您必须首先在特殊的可视化构建器中配置该程序。但是,如果您的需求发生了变化,并且需要一个不同的配置呢? 您必须在可视化构建器中再次创建OnlineDesigner,将其下载并将其添加到您的项目中。 如果同一个项目中的不同情况需要不同的设计器配置呢? 您的代码开始重复使用不同版本的设计器,这增加了不必要的“麻烦”,正如Martin Fowler所说。
但是实际上并没有那么糟糕!
在本文中,我将讨论新功能 - 在程序代码中更改在线设计器的配置。 实际上,我们将覆盖设计器的配置文件,这是一个json格式的文档。 该功能在2017.3.3版本中已经实现。 此功能可用于更改设计器的设计和其他参数。
怎么运行的? 在线设计器首先加载默认设置,然后更改 - 它们覆盖初始设置。
覆盖的配置存储在属性:WebReport.DesignerConfig中,作为JSON格式的字符串。
我们来看一个例子。 创建ASP.Net MVC应用程序。 我们在项目中添加一个包含在线设计器的文件夹。 我们称之为WebReportDesigner。 在其中,我们将从FastReport站点下载的存档的内容配置为设计器。
在参考文献中,我们添加了一个链接到FastReport.dll和FastReport.Web.dll库。
现在,在Index中将以下代码添加到HomeController控制器:
使用此属性的示例:
using FastReport.Web; using System.Web.UI.WebControls; … public ActionResult Index() { WebReport webReport = new WebReport(); webReport.Width = Unit.Percentage(100); webReport.Height = Unit.Percentage(100); string report_path = GetReportPath(); System.Data.DataSet dataSet = new System.Data.DataSet(); dataSet.ReadXml(report_path + "nwind.xml"); webReport.Report.RegisterData(dataSet, "NorthWind"); webReport.Report.Load(report_path + "Simple List.frx"); webReport.DesignReport = true; webReport.DesignScriptCode = false; webReport.Debug = true; webReport.DesignerPath = "~/WebReportDesigner/index.html"; webReport.DesignerLocale = "en"; webReport.DesignerSaveCallBack = "~/Home/SaveDesignedReport"; webReport.ID = "DesignReport"; // file with custom configuration string designerConfigFile = this.Server.MapPath("~/App_Data/DesignerConfig.json"); // load file in DesignerConfig if (System.IO.File.Exists(designerConfigFile)) webReport.DesignerConfig = System.IO.File.ReadAllText(designerConfigFile); ViewBag.WebReport = webReport; return View(); }
您注意到,WebReport添加了DesignerConfig属性。 在其中,我们定义配置文件,覆盖在线设计器的必要参数。 该文件放置在项目中的App_Data或任何其他文件夹中。
以下是文件内容/App_Data/DesignerConfig.json的示例:
{ "font-names": [ "Calibri", "Calibri Light", "Comic Sans MS", ], "default-font-name": "Calibri", "preload-fonts": ["Calibri"], "scale": 1, "grid": 9.45, "sticky-grid": true }
在此文件中,我们更改了在线设计器的文本组件中可用的字体集。
现在来看看在配置文件中可以覆盖的所有配置参数:
{ "url" - Where to make a redirect after successful saving; "blank": - Open in a new tab; "useParent" - In the case when the online designer in the iframe then make a redirect in the parent window in which the designer is embedded; "removeConfirmation" - Do not show confirmation when redirecting (after saving); },
{ "button-circle" - Color of resize elements and other round elements on the work area; "angle-slider" - Angle element color; "default-band-separator" - Color of separator between the bands; "selected-band-separator" - The color of the active splitter between the bands, when the band is in the process of resizing; },
自定义面板(左侧,具有按钮的工具栏)
{ "properties": { "enable" - Panel activity; "button" - Show the button for this toolbar on the toolbar; "shown" - Open the default panel when downloading an online designer; "header": - Panel title; "hasBorder" – Visual border of the panel; "movable" - The ability to move the panel through drag & drop; "resizable" – The ability to change the size of the panel; }, "events": { "enable": true, "button": true, "shown": false, "header": true, "hasBorder": true, "movable": true, "resizable": true }, "report-tree": { "enable": true, "button": true, "shown": false, "header": true, "hasBorder": true, "movable": true, "resizable": true }, "data": { "enable": true, "button": true, "shown": false, "header": true, "hasBorder": true, "movable": true, "resizable": true }, "preview": { "enable": true, "shown": true, "button": false, "header": false, "background": "initial", "container": "horz" "width": 125 - Default widget width; "table": true } }, "default-tab-menu": "home" – The default tab in the top toolbar when the designer loads; "show-saving-progress": "default", - Possible values - default, small, large; "notifications": "default", - Possible values - default, html5, false; "notifications-mobile": "default" Possible values - default, html5, false; }
因此,我们有一个很好的机会重新配置在线设计器,而无需重新编译。
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@capbkgr.cn
本文探讨 SQL Server 中 NULL 和空值之间的区别,并讨论如何有效地处理它们。
Unity 是一款功能极其丰富的游戏引擎,允许开发人员将各种媒体集成到他们的项目中。但是,它缺少最令人兴奋的功能之一 - 将 Web 内容(例如 HTML、CSS 和 JavaScript)直接渲染到 3D 场景中的纹理上的能力。在本文中,我们将介绍如何使用 DotNetBrowser 在 Unity3D 中将 Web 内容渲染为纹理。
DevExpress v24.2帮助文档正式发布上线了,请按版本按需下载~
本教程将向您展示如何用MyEclipse构建一个Web项目,欢迎下载最新版IDE体验!
用于快速高效地生成报表的附加组件
FastScriptFastScript是一个跨平台的多语言脚本引擎,帮助开发者在他们的应用程序中增加脚本功能。
FastCube VCLFASTCUBE VCL是一款有效的数据分析工具
FastReport .Net一款全功能的Windows Forms、ASP.NET和MVC报表分析解决方案。
FastQueryBuilderFastQueryBuilder是一款简单实用的可视SQL请求软件开发包。它与本地CS数据库兼容。
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@capbkgr.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢