数据不在 Google Chrome 中显示,但在 IE 和 FF 中工作。当我导出数据时,数据以可导出格式显示。我还添加了以下代码。
// container is either the ReportViewer control itself, or a div containing it.
function fixReportingServices(container) {
if ($.browser.safari) { // toolbars appeared on separate lines.
$('#' + container + ' table').each(function (i, item) {
if ($(item).attr('id') && $(item).attr('id').match(/fixedTable$/) != null)
$(item).css('display', 'table');
else
$(item).css('display', 'inline-block');
});
}
}
// needed when AsyncEnabled=true.
Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(function () { fixReportingServices('rpt-container'); });