SSRS BIDS 报告管理器 - 控制
无论如何,是否可以对报表管理器有更多的控制,对于这样一个复杂的产品来说,除了重命名文件夹并将报表和报表部分放置在这些文件夹中之外,几乎无法控制报表管理器部分,这似乎很奇怪,据我所知,我甚至无法移动它们并以任何顺序放置它们。
如果我可以改变文件夹的颜色并自由移动它们,那就太好了。
有没有人有任何我可能错过的自定义提示或控制建议,以便为开发人员提供对此区域的更多控制?
Is there anyway to have more control over Report Manager, is seems bizzare for such a sophisticated product to allow next to no control over the report manager section other than rename folders and place reports and report parts in these folders, as far as im aware I cannot even move them around and place them in any sort of order.
It would be nice if I could change the colour of folders and move them around freely.
Does anyone have any customization tips or control suggestions I may have missed for giving more control over this area to developers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以对 SSRS 样式表进行一些修改,但是不,不支持报表管理器的自定义。SSRS 与报表有关。报告的任何复杂控制或 UI 都超出了 SSRS 产品的范围。另一方面,如果您想深入了解报表管理器页面结构,则有一些复杂的 JQuery 技术可以用于此类页面操作。
(样式表位于默认 2008 R2 安装中的 Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager\Styles 中。不支持自定义。)
我怀疑使用报表管理器(占 SSRS 用户总数的百分比 ) )远远超出了产品最初的想象。毕竟,它被称为报告管理器。
使用 .NET 中的 Web 服务或使用 URL 报告访问是通过您可以构建的任何界面交付报告的简单方法。
You can mess around a little bit with the SSRS stylesheets, but no, customization of Report Manager is not supported. SSRS is about the reports. Any sophisticated control or UI of the reports is beyond the scope of the SSRS product. On the other hand, there are some sophisticated JQuery techniques that could work for this sort of page manipulation if you want to dive into the Report Manager page structure.
(Stylesheets are at Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager\Styles in a default 2008 R2 install. Customization is not supported.)
I suspect that the use of Report Manager (as a percentage of total SSRS users) is far beyond what was originally imagined for the product. It is called the Report Manager, after all.
Consuming the web service in .NET or using URL report access are straightforward methods to deliver the reports through any interface you can build.
正如 Jamie 所说,报表管理器的定制并不是很容易。这里讨论了一些技术:
http://weblogs.asp.net/jgalloway/archive/2006/12/12/reporting-services-add-a-logo-to-the-report-manager.aspx
如果你想要什么灵活,我正在开发 SSRS 的替代开源前端,称为 CrissCross:
https://github.com/codeulike/crisscross
目前 CrissCross 专注于更好的多选择小部件以及对具有许多参数的报告的更好支持。但由于它是开源的,您可以使用它作为基础来构建您想要的任何内容。
As Jamie says, customization of Report Manager is not very easy. A few techniques are discussed here:
http://weblogs.asp.net/jgalloway/archive/2006/12/12/reporting-services-add-a-logo-to-the-report-manager.aspx
If you want something flexible, I am working on an alternative open-source front-end for SSRS, called CrissCross:
https://github.com/codeulike/crisscross
Currently CrissCross is focused on better multi-pick widgets and better support for reports with many parameters. But as its open-source, you can use it as a foundation to build whatever you want.