We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 708231f commit 6b5807fCopy full SHA for 6b5807f
src/features/edit/js/gridEdit.js
@@ -774,7 +774,10 @@
774
});
775
776
$scope.$broadcast(uiGridEditConstants.events.BEGIN_CELL_EDIT, triggerEvent);
777
- $scope.grid.api.edit.raise.beginCellEdit($scope.row.entity, $scope.col.colDef, triggerEvent);
+ $timeout(function () {
778
+ //execute in a timeout to give any complex editor templates a cycle to completely render
779
+ $scope.grid.api.edit.raise.beginCellEdit($scope.row.entity, $scope.col.colDef, triggerEvent);
780
+ });
781
}
782
783
function endEdit() {
0 commit comments