我正在尝试创建一个动态标签,其中将包含一些表单(输入文本框,网格等)。 到目前为止,我成功地创建了动态标签。但我坚持为每个标签制作单独的输入表格。例如。我需要说明文本框模型对每个选项卡都是唯一的。并且RequestsGridOptions应显示每个选项卡的相应数据。
这是我的代码
<tabset type="pills">
<tab ng-repeat="tab in selectedIPPLots track by $index" heading="{{tab.Descritpion}}"
active="tab.active"
disable="tab.disable">
<div class="container" style="margin:5px;border: 1px solid #ddd;margin-left:1px;width:1000px">
<div class="input-w" ng-repeat="lotD in LotDescriptionModel">
<label for="lotD" style="margin:20px;">Description</label>
<input type="text" class="form-control" id="lotD" Style="width:200px;margin:10px;" ng-model="lotD" />
</div>
<kendo-grid options="RequestsGridOptions" style="margin:5px">
</kendo-grid>
<label for="fileUpload" style="margin:10px;">Attach Terms of Reference for the Lot</label>
<input id="fileUpload" type="file" name="attachment" class="form-control" style="width:300px" />
<button class="btn btn-primary pull-right" style="margin:5px">Save</button>
</div>
</tab>
</tabset>
有办法做到这一点吗? 感谢