* commit 'f1fad2ab01b11fa41d573ee77b1343552ddeaaab': basicButton enable处理
@ -807,6 +807,9 @@ BI.BasicButton = BI.inherit(BI.Single, {
_trigger: function () {
var o = this.options;
if(!this.isEnabled()){
return;
}
if (!this.isDisableSelected()) {
this.isForceSelected() ? this.setSelected(true) :
(this.isForceNotSelected() ? this.setSelected(false) :
@ -220,6 +220,9 @@ BI.BasicButton = BI.inherit(BI.Single, {