这个是sheet切换时候的隐藏显示控件,参考文档,直接把隐藏语句该厂参数传递的语句就可以了
https://bbs.fanruan.com/thread-134131-1-1.html
以下是完整代码,测试切换时候可以修改参数
demo文件
WorkBook437.rar
=============
$(".fr-sheetbutton-container").click(function() //切换 sheet 时
{
var a = contentPane.$contentPane.data('TabPane').tabBtns[contentPane.selectedIndex].options.name; //获取当前sheet 的名字
if (a == "sheet2") {
$.ajax({
url: '/webroot/decision/view/form?op=fr_dialog&cmd=parameters_d',
type: 'POST',
data: {
"A": "3",
"B": "4"
},
headers: {
sessionID: _g().currentSessionID
},
complete: function(res, status) {
if (window.FR && FR.Chart && FR.Chart.WebUtils) {
FR.Chart.WebUtils.clearCharts();
}
_g().gotoPage(contentPane.currentPageIndex); //回到当前页
}
});
} else {
$.ajax({
url: '/webroot/decision/view/form?op=fr_dialog&cmd=parameters_d',
type: 'POST',
data: {
"A": "1",
"B": "2"
},
headers: {
sessionID: _g().currentSessionID
},
complete: function(res, status) {
if (window.FR && FR.Chart && FR.Chart.WebUtils) {
FR.Chart.WebUtils.clearCharts();
}
_g().gotoPage(contentPane.currentPageIndex); //回到当前页
}
});
}
});