如何禁用 TabBarButton?我希望它是不可点击的和灰色的。
指南中没有任何参数可以设置它。 https://dojotoolkit.org/reference-guide/1.9/dojox/mobile/TabBarButton.html
createFooter : function() {
this.inherited(arguments);
this.footer = new Footer({}, this.footerNode);
this.settingsBtn = new TabBarButton(
{
clickable:false,
icon : "images/settingsIcon.png",
}, domConstruct.create("li"));
this.footer.addChild(this.settingsBtn);
this.settingsBtn.onClick = lang.hitch(this, "settings");
},
settings : function() {
alert("settings started");
}