我在使用angularjs的项目中使用了select2工具
使用第一行中的angularjs在网格中为此select2赋值时,
它没有分配,但如果我试图在第二行的第一行旁边分配,那么它工作正常。
为什么会这样。?
欢迎任何有关这方面的建议
提前致谢。
<td ng-if="configRow.validation.valueType == 'Single Choice'" style="width:26%">
<!-- <input style="width:100%" type="text" ng-model="configRow.Value" ui-select2="selectChoices" ng-blur="addToConfig()"> -->
<div class="print-blank" >
<select ui-select2 ng-model="configRow.Value" data-placeholder="Select One" ng-change="updatedDate($index)">
<option value=""></option>
<option ng-repeat="element in configRow.validation.list track by $index" value="{{element}}" >{{element}}</option>
</select>
</div>
</td>