目前能修改所有的,但只需要修改指定的下拉框弹出宽度
这是js
"use document"; setInterval(function() { $(".bi-popup-view.bi-v.fvs-controller-combo-popup-view-base.fvs-controller-combo-popup-view").css({"width":"1000px"}); }, 100)
"use document"; setInterval(function() {
$('div[widgetname="TEXTEDITOR0"]').css({"width":"1000px"}); }, 100)
TEXTEDITOR0改成你的控件名称
参考决策报表中的指定控件
$('div[widgetname="TEXTEDITOR0"]').find(".bi-card, .bi-card .bi-input, .bi-card .bi-textarea").css('color','red')
FVS下拉框编辑前事件:(下拉框宽度高度)
"use document";
setTimeout(function() {
$("div[data-name=RA]").find(".bi-v-tape").css({"width":"50px","height":"50px"})
$("div[data-name=RA]").find(".bi-v.list-view-outer.bi-card.list-view-shadow").css({"width":"50px","height":"50px"})
}, 100);
=========
RA是控件名,需要大写