본문 바로가기
  • 노란색 세상은 어디에 있을까?
  • 봄이 오면 여기에 있겠지.
  • 잠시나마 유유자적 하겠네.

분류 전체보기93

[ 그리드 풋터 ] 표준에서 제공하는 기능을 아래와 같이 숨기기합니다. Interactive Grid 하단 풋터 영역을 숨기기합니다. ● 그리드 선택 > Attributes > Advanced - Initialization JavaScript Function function(config) { config.defaultGridViewOptions = { footer: false } return config; } Interactive Grid 풋터 숨기기 기능 테스트한 결과입니다. 2024. 4. 10.
[ Action Menu ] 표준에서 제공하는 기능을 아래와 같이 제어합니다. Interactive Grid에서 제공하는 표준 기능을 아래와 같이 제어합니다. ● Attributes > Advanced - Initialization JavaScript Function function(config) { config.initActions = function(actions) { actions.remove("single-row-view"); actions.remove("row-duplicate"); actions.remove("row-delete"); actions.remove("row-add-row"); actions.remove("row-refresh"); actions.remove("row-revert"); actions.remove("selection-delete"); action.. 2024. 4. 10.
[ 페이지 경로 ] Global Page 통한 경로 설정을 아래와 같이 진행합니다. 전체 페이지에 대한 공통 "Button Container"를 구성하며, 페이지에 대한 경로를 표기할 수 있는 "Item"을 추가합니다. ● Identification - Title: 페이지경로 & 공통버튼 - Type: Static Content ● Layout - Position: Breadcrumb Bar (페이지 경로 설정 위치) ● Appearance - Template: Buttons Container - Template Options: Use Template Defaults, No Padding, Remove UI Decoration, Slim, Stretch Form Fields, Small, Small, None, None ● Advanced - Custom Attributes: style.. 2024. 4. 8.
[ 권한메뉴 ] 시퀀스 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [공통관리] 권한메뉴 시퀀스 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 시퀀스 생성 drop sequence bcom.com_auth_menu_s; create sequence bcom.com_auth_menu_s minvalue 1 maxvalue 999999999999 start with 10000 increment by 1 o.. 2024. 4. 7.
[ 메뉴 ] 시퀀스 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [공통관리] 메뉴 시퀀스 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 시퀀스 생성 drop sequence bcom.com_menu_s; create sequence bcom.com_menu_s minvalue 1 maxvalue 999999999999 start with 10000 increment by 1 order; -- 권한 .. 2024. 4. 7.
[ 사용자권한 ] 시퀀스 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [공통관리] 사용자권한 시퀀스 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 시퀀스 생성 drop sequence bcom.com_user_auth_s; create sequence bcom.com_user_auth_s minvalue 1 maxvalue 999999999999 start with 10000 increment by 1 .. 2024. 4. 7.
[ 사용자 ] 시퀀스 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [공통관리] 사용자 시퀀스 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 시퀀스 생성 drop sequence bcom.com_user_s; create sequence bcom.com_user_s minvalue 1 maxvalue 999999999999 start with 10000 increment by 1 order; -- 권한.. 2024. 4. 7.
[ 권한 ] 시퀀스 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [공통관리] 권한 시퀀스 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 시퀀스 생성 drop sequence bcom.com_auth_s; create sequence bcom.com_auth_s minvalue 1 maxvalue 999999999999 start with 10000 increment by 1 order; -- 권한 .. 2024. 4. 7.
[ 코드 ] 시퀀스 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [공통관리] 코드 시퀀스 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 시퀀스 생성 drop sequence bcom.com_code_s; create sequence bcom.com_code_s minvalue 1 maxvalue 999999999999 start with 10000 increment by 1 order; -- 권한 .. 2024. 4. 7.