如按钮名字默认显示buttons,点击此按钮后,显示按钮1。
添加点击事件
if(this.getValue()=='buttons'){
this.setValue("1");
}else if(this.getValue()=='1'){
this.setValue("buttons");
}
控件通用:https://help.fanruan.com/finereport/doc-view-4261.html
点击事件:
$("div[widgetName=BUTTONS]").find(".fr-btn-text").text("按钮1");
https://help.fanruan.com/finereport10.0/doc-view-4007.html
点一次变成按钮1,再点变回点击
var a=_g().parameterEl.getWidgetByName("button0").getText();
if(a=="点击"){
_g().parameterEl.getWidgetByName("button0").setText("按钮1");
else
{
_g().parameterEl.getWidgetByName("button0").setText("点击");