因为页面中使用了网页框,只能使用动态参数,多选框的值在查询后必须要复写回去,这个该怎么实现?之前单选是这么是可以实现的。 单选框 two、three var to =_g().getWidgetByName("two"); var two= to.getValue(); var th =_g().getWidgetByName("three"); var three = th.getValue(); $.ajax({ url: '/webroot/decision/view/form?op=fr_dialog&cmd=parameters_d', type: 'POST', data: { "two": two,"three" : three }, headers: { sessionID: session }, complete: function(res, status) { if (window.FR && FR.Chart && FR.Chart.WebUtils) { FR.Chart.WebUtils.clearCharts(); } _g().loadContentPane(); } }); to.setValue(tow); th.setValue(three); |
最佳回答 |
||||
0
|
|