我有一个包含许多输入字段,组合和按钮的字段集。要编辑某些内容,您必须激活编辑模式。
是否可以在不使用多个字段集的情况下在此禁用的字段集中启用一个按钮?即使未激活编辑模式,也可以使用查找按钮。
<fieldset ng-disabled="ctrl.condition">
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">{{ 'Generally' | i18n}}</h3>
</div>
<div class="box-body">
...
<div class="row">
<div class="col-xs-12 col-md-6 col-xl-4">
<div class="col-md-10" style="padding-left: 0px; padding-right: 0px">
<dn-input text="some text" typ="number" modell="ctrl.value"></dn-input>
</div>
<div class="col-md-2" style="padding-right: 0px">
<!-- This part should be enabled -->
<dn-eingabe text="another text">
<button type="button" class="btn btn-default" ng-click="ctrl.func()">...</button>
</dn-eingabe>
<!-- -->
</div>
</div>
...
</div>
...
</div>
</div>
</fieldset>