0
我在VS2010中開發了MVC應用程序,Telerik Reports使用「Telerik報告工具」開發了它,它給了我一個.trdx文件,所以我將這個報告集成到了我的項目中,Uri new Telerik.Reporting.UriReportSource()
;但現在我想通過一些隱藏的參數到這個報告如何將隱藏參數傳遞給Telerik Reports?
我該怎麼做?請給我一些建議
日Thnx
索爾
我在VS2010中開發了MVC應用程序,Telerik Reports使用「Telerik報告工具」開發了它,它給了我一個.trdx文件,所以我將這個報告集成到了我的項目中,Uri new Telerik.Reporting.UriReportSource()
;但現在我想通過一些隱藏的參數到這個報告如何將隱藏參數傳遞給Telerik Reports?
我該怎麼做?請給我一些建議
日Thnx
索爾
我發現了什麼。我希望它能幫助你。也許你可以修改和使用它
$('#btnUpdateReport').click(function() {
// add the parameters to the controller parameters
var pId = $('#txtPortfolioId').val();
var viewer = $reportViewer.data('telerik_ReportViewer');
viewer.reportSource($.extend({}, viewer.reportSource(), { parameters: { 'portfolioId': pId } }));
});
http://www.telerik.com/forums/external-report-viewer-parameters
是謝謝MustafaP我認爲這是一種從JavaScript的發送,我發現從服務器端發送參數但感謝你的答案:)的方式 – saulyasar