移动端升到10.4.976后参数面版JS控制控件的显示或隐藏无效
textEditor0和textEditor1默认为显示,textEditor2 默认为隐藏。
目的:通过点击button1让他们的显示和隐藏互换。
button1点击事件代码:
var textEditor0 = this.options.form.getWidgetByName("textEditor0");
var textEditor1 = this.options.form.getWidgetByName("textEditor1");
var textEditor2 = this.options.form.getWidgetByName("textEditor2");
textEditor0.setVisible(false);
textEditor1.setVisible(false);
textEditor2.setVisible(true);
移动端升级到10.4.976之前是可以的,之后不行了,运行无变化,必须查询后返回参数面板才能看到变化后的结果。
安卓,iphone均出现这样的情况。
经测试服务器端FR10.0存在同样的问题,极严重的BUG
编辑于 2021-2-1 02:15