我在这里有下拉指令链接
需要一些关于如何绑定我的编辑和保存表单的帮助。
查看/编辑:如何在我的关键字指令中分配我的供应商状态 ID?
<tr ng-repeat="supplier in suppliers">
<td>{{supplier.Id}}</td>
<td>{{supplier.Name}}</td>
<td>
<keywords title="Choose Status" label="" array="myKeyword" opt-value="Id" opt-description="Description"></keywords>
<br />
</td>
</tr>
添加新记录:如何将关键字指令的 ID 保存到供应商.statusID
<div>Name: <input type="text" />
<br />
Status: <keywords title="Choose Status" label="" array="myKeyword" opt-value="Id" opt-description="Description"></keywords><br><button>Save</button>
</div>