You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix#1685: Remove col.index from most code, add col.uid
Tidies up much of the column behaviour.
Removed col.index everywhere it appears, except for in the cell content
templates. For the cell content, replace with col.uid, which is now
uniquely generated when the column is created, and never changed again.
Should also fix#1694, but need to push to be sure.
<selectng-class="'colt' + col.index" ui-grid-edit-dropdownng-model="MODEL_COL_FIELD" ng-options="field[editDropdownIdLabel] as field[editDropdownValueLabel] CUSTOM_FILTERS for field in editDropdownOptionsArray"></select>
3
+
<selectng-class="'colt' + col.uid" ui-grid-edit-dropdownng-model="MODEL_COL_FIELD" ng-options="field[editDropdownIdLabel] as field[editDropdownValueLabel] CUSTOM_FILTERS for field in editDropdownOptionsArray"></select>
0 commit comments