11.0版本怎么用js给大屏控件设置背景,之前10.0是用
setTimeout(function(){
$("div[widgetname=控件名称]").css("background","url(图片路径) center center/ 100% 100% no-repeat);
},100);
JS设置动态背景/边框-https://help.fanruan.com/finereport/doc-view-2125.html
--------------
CSS修改控件样式
https://help.fanruan.com/finereport/doc-view-1367.html
因为11里面,它的属性全变了。。这个要自己测试比如文本框要这样:
setTimeout(function() {
$(".report-main-parameter-container-controller-text.bi-v.bi-card").css({'background': 'url(/webroot/help/picture/0002.png)no-repeat','background-size':'100% 100%'});
},100)