yAxisEditorCtrl.forceCombinedYAxis
我在这里有一个单选按钮 div,如果它是真的,我想禁用它。
这是我更改之前的代码
<div class="y-axis-editor">
<div class="vis-config-option display-size-normal form-group" ng-if=" yAxisEditorCtrl.supportsType()">
<lk-vis-editor-radio-input label="Scale Type" model="yAxisEditorCtrl.type" options="yAxisEditorCtrl.typeOptions"/>
</div>
...
</div>
其中 和 的定义model
是options
:
@type =
value: null
@typeOptions = [
{name: "Linear", value: "linear"}
{name: "Logarithmic", value: "log"}
]
所以我尝试ng-disabled="yAxisEditorCtrl.forceCombinedYAxis"
像这样添加到我的 div 中:
<div class="y-axis-editor">
<div class="vis-config-option display-size-normal form-group" ng-if=" yAxisEditorCtrl.supportsType()" ng-disabled="yAxisEditorCtrl.forceCombinedYAxis">
<lk-vis-editor-radio-input label="Scale Type" model="yAxisEditorCtrl.type" options="yAxisEditorCtrl.typeOptions"/>
</div>
...
</div>
但是,即使ng-disabled
为真(我检查了输出),它仍然不会禁用。
我什至尝试在定义单选按钮的 div 中添加它,但仍未禁用。
好奇我怎么能让这个工作?