Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在研究 pentaho 仪表板向下钻取选项传递参数。单击第一个仪表板图表时,它会发出警报消息,并且它正在移动到仪表板。但在第二个仪表板中,它显示的是空数据。我不知道我在哪里失踪。
我找到了我的问题的答案。
我们应该在第二个仪表板中使用自定义参数和以下 java 脚本代码。
function x(){ //Dashboards.fireChange("statusname",Dashboards.getQueryParameter('param_order_status')); return Utils.getQueryParameter('param_order_status'); //return 'Open';}
希望这会有用。