做了个单元格控件,命名为‘p1’,然后做了一个二级弹窗的JS代码, 编辑前。 下面是二级弹窗的返回代码,就是在弹窗中选择好后返回数值, 我试过,如果是参数面板上的控件,把它命名为p1就可以正常返回值。 var currentCell = contentPane.curLGP.currentTDCell; var val = FR.getCellValue(currentCell); var form = window.parent.form; form.getWidgetByName("p1").setValue(val); window.parent.FR.closeDialog(); window.parent.FR.distroyDialog(); 但是如果是单元格控件的,就不能返回,报下面这个错误。 自定义JS错误 : Cannot read property 'getWidgetByName' of undefined 请问要如何设置才能正确返回? |