프로그램 309

about angularjs directive scope

about angularjs directive scope 가장 햇갈리는 부분이라고 하면 ..과장일까 ?그래서 정리 하였습니다.가장 좋은 자료는 : http://www.undefinednull.com/2014/02/11/mastering-the-scope-of-a-directive-in-angularjs/여기 입니다. 테스트는 여기로 http://jsfiddle.net/wZrjQ/67/ directive scope : false 로 처리하여 controller와 scope을 공유 한다...scope: {} 을 이용하여 directive만의 scope으로 사용가능함.여기서 상위 controller 의 scope var 를 매핑하는 방식 3가지가 있습니다. 1. '@' : oneway copy : contro..

SQL Server Paging ISSUE.

SQL서버에서 페이징을 고민 하시는 분들이라면 한번쯤 아래의 포스트를 참조 하기 바랍니다. SQL Server Paging ISSUE.http://www.mssqltips.com/sqlservertip/2696/comparing-performance-for-different-sql-server-paging-methods/ --SQL 2000 Paging Method DECLARE @Start INT DECLARE @End INT SELECT @Start = 14000,@End = 14050 CREATE TABLE #employees (RowNumber INT IDENTITY(1,1), LastName VARCHAR(100),FirstName VARCHAR(100), EmailAddress VARCHAR(..