angular-ui/ui-grid
在 GitHub 查看Select and input in edit template -> edit mode is randomly open on rows
Open
#6,407 建立於 2017年9月27日
help wanted
倉庫指標
- Star
- (5,395 star)
- PR 合併指標
- (30 天內沒有已合併 PR)
描述
Hello and than you for the work !
So I tried this on the edit template (I have differents types of values for a column) :
<div>
<form name="inputForm">
<input ng-if="row.entity.colType === 'text'"
type="INPUT_TYPE"
ui-grid-editor
ng-class="\'colt\' + col.uid"
ng-model="MODEL_COL_FIELD">
<select ng-if="row.entity.colType === 'dropdown'"
ng-class="'colt' + col.uid"
ui-grid-edit-dropdown
ng-model="MODEL_COL_FIELD"
ng-options="field[editDropdownIdLabel] as field[editDropdownValueLabel] CUSTOM_FILTERS for field in editDropdownOptionsArray">
</select>
</form>
</div>
Here is a plunker http://plnkr.co/edit/KlIPBCPBxnXMB6Ubgi3s?p=preview with two rows, but with many more rows, scrolling make the edit mode open randomly. In the plunker we can see that the edit will stay open. For some reason it seems that the endEdit doesn't remove the node's chidren as it should. I can't really figure out why though ...
Is there somehting I can rewrite or some places I should look into to fix this ?
Thank you !