管网上手机端展示的例子R14还能用吗?
var viewer = GrapeCity.ActiveReports.Viewer({
element: '#test',
reportService: {
url: 'ActiveReports.ReportService.asmx'
},
zoomMode: 'fittowidth',
uiType: 'Mobile',
reportLoaded: function () {
//reportsButtons.prop('disabled', false);
},
localeUri: 'assets/js/i18n/zh.txt',
report: {
id: reportid
}
});
$(window).bind('beforeunload', function () {
test.destroy();
});
|
|