cpt是嵌套在其它页面上,通过参数来控制是否显示导出按钮,比方传参数a=1时显示导出按钮,如果a=0时隐藏导出按钮或者制灰
测试1.cpt
demo
直接在按钮上写js,按钮控件初始化后事件
var th=this;
setTimeout(function() {
if(a=='1')
{th.options.form.getWidgetByName("supplierID").setEnable(false);}//supplierID是按钮名称
else
{th.options.form.getWidgetByName("supplierID").setEnable(true);}
}, 100);