目前H5和JSviewer只能使用这种办法实现,就是在Report ID中加你需要传递的值,然后再后台进行获取,传递的值,这样可以进行一个对应的参数的筛选。
- <script type="text/javascript">
- function Search() {
- $(function () {
- var viewer = GrapeCity.ActiveReports.Viewer({
- element: '#viewer',
- report: {
- id: 'Reports/SalesDetail.rdlx' + ';' + $("#TextBox1").val()+';' + $("#TextBox2").val()
- },
- reportService:
- {
- url: 'WebService3.asmx'
- },
- uiType: 'Desktop',
- localeUri: 'Scripts/i18n/Localeuri.txt',
- });
- })
- };
- </script>
复制代码 然后后天可以获取 报表的值,进行一个对应的值获取,然后进行一个对应的分割
|