프로그램 308

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(..

10 Object Oriented Design Principles Java Programmer should know

펌입니다... 좋은 내용 같네요. 10 Object Oriented Design Principles Java Programmer should know Read more: http://javarevisited.blogspot.com/2012/03/10-object-oriented-design-principles.html#ixzz3AEWwGios Though best way of learning any design principle or pattern is real world example and understanding the consequences of violating that design principle, subject of this article is Introducing Object orient..

프로그램/java 2014.08.13