Fix Bug 59600
This commit is contained in:
parent
dcd37e4731
commit
5067a87300
|
@ -101,7 +101,10 @@ define([
|
||||||
this.checkedIndex = i;
|
this.checkedIndex = i;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
(this.checkedIndex>=0) && this.radio[this.checkedIndex].setValue(true);
|
if (this.checkedIndex>=0) {
|
||||||
|
this.radio[this.checkedIndex].setValue(true);
|
||||||
|
this.currentCell = this.radio[this.checkedIndex].options.value;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this));
|
$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this));
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue