彩票走势图

【Stimulsoft Reports.Net教程】查看器工具栏上的自定义按钮

翻译|使用教程|编辑:王香|2018-09-28 11:39:48.000|阅读 957 次

概述:本文主要介绍了Stimulsoft报表中如何在Web查看器的工具栏上添加自定义按钮。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

【下载Stimulsoft Reports.Net最新版本】

此示例项目演示了如何在Web查看器的工具栏上添加自定义按钮。您可以设置自定义按钮的标题和图标,并添加单击事件。 例如,在工具栏上添加自定义按钮并定义单击事件,在其中显示警报消息。

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs"
    Inherits="Custom_Button_on_the_Toolbar_of_the_Viewer.Default" %>
<%@ Register assembly="Stimulsoft.Report.Web" namespace="Stimulsoft.Report.Web" tagprefix="cc1" %>
 
<!DOCTYPE html>
 
<html xmlns="//www.w3.org/1999/xhtml">
<head runat="server">
    <title>Custom Button on the Toolbar of the Viewer</title>
</head>
<body>
    <form id="form1" runat="server">
        <cc1:StiWebViewer ID="StiWebViewer1" runat="server"
                OnGetReport="StiWebViewer1_GetReport" />
    </form>
 
    <script type="text/javascript">
        ...
    </script>
</body>
</html>

要添加按钮,您可以使用简单的JavaScript代码。首先,使用位于Web查看器对象中的SmallButton()构造函数创建自定义按钮对象。接下来,获取工具栏按钮容器并插入按钮对象。

var customButton = jsStiWebViewer1.SmallButton("customButton", "Custom Button", "emptyImage");
customButton.image.src = "//www.stimulsoft.com/favicon.png";
customButton.action = function () {
    alert("Custom Button Event");
}
 
var toolbarTable = jsStiWebViewer1.controls.toolbar.firstChild.firstChild;
var buttonsTable = toolbarTable.rows[0].firstChild.firstChild;
var customButtonCell = buttonsTable.rows[0].insertCell(0);
customButtonCell.appendChild(customButton);

示例代码的结果如下图所示:

Stimulsoft

购买Stimulsoft正版授权,请点击“”哟!

FastReport2018.4


标签:报表解决方案报表.NETASP.NET报表控件报表设计stimulsoft report .netStimulsoft

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP