From 1b6b87f1dcc6cd117c3bf4793835db5aaf8f83f2 Mon Sep 17 00:00:00 2001 From: Shane Walters Date: Tue, 12 Aug 2014 15:30:51 -0500 Subject: [PATCH] Fix 202 tutorial. You can't name a column 'Show Scope' because angular pukes over the binding. that will be addressed later in some binding fixes --- misc/tutorial/202_externalScopes.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/tutorial/202_externalScopes.ngdoc b/misc/tutorial/202_externalScopes.ngdoc index 8ac4f40a14..45f1867b5d 100644 --- a/misc/tutorial/202_externalScopes.ngdoc +++ b/misc/tutorial/202_externalScopes.ngdoc @@ -35,7 +35,7 @@ Then in a template, you access the scope using getExternalScopes() function. $scope.gridOptions.columnDefs = [ { name: 'firstName' }, { name: 'lastName'}, - { name: 'Show Scope', + { name: 'ShowScope', cellTemplate:'' } ];