angular-ui/ui-grid
Vedi su GitHubSelect and input in edit template -> edit mode is randomly open on rows
Open
#6407 aperta il 27 set 2017
help wanted
Metriche repository
- Star
- (5395 star)
- Metriche merge PR
- (Nessuna PR mergiata in 30 g)
Descrizione
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 !