找回密码
 立即注册

QQ登录

只需一步,快速开始

Lenka.Guo 讲师达人认证 悬赏达人认证
超级版主   /  发表于:2020-2-28 18:21  /   查看:3154  /  回复:0
1. 打开JSViewer MVC 示例
2. 在解决方案下添加 WebDesignerSample 示例

添加成功后:

3. 打开 JSviewer MVC 示例的Index.html 页面
添加两个按钮
                    <inputid="AddRdl" type="button" value="新建RDL报表"/>                  
                    <inputid="UpdateRpt" type="button" value="修改报表" onclick="UpdateRpt_click();"/>
4. 在Index 页面添加script标签
<scripttype="text/javascript">         
       function AddRdl_click()
       {
           window.open("http://localhost:58703/create");
       }        
       function UpdateRpt_click()
       {
                    alert("打开报表");
                   window.open("http://localhost:58703/edit/" +InRptNo+".rdlx");
       }
</script>
在线设计器集成完成。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?立即注册

x

0 个回复

您需要登录后才可以回帖 登录 | 立即注册
返回顶部