Angular JS 의 UI-grid를 쓰는 중이다. UI-grid의 filter기능이 참 좋긴한데, filter값에 따라서 서버상에서의 데이터 출력이 달라저야 하는데, angular의 service로 이를 구현해봤다..~~ 별거 아니다.. 그냥 까먹지 않기 위해서 정리해놓은거다... Controller상에서의 Grid Option $scope.restaurantGrid={ enableSorting:true, enableFiltering: true, enableRowHeaderSelection: false, multiSelect:false, paginationPageSizes:[10,25, 50,75], paginationPageSize:10, useExternalPagination: true, useE..