본문 바로가기
  • 노란색 세상은 어디에 있을까?
  • 봄이 오면 여기에 있겠지.
  • 잠시나마 유유자적 하겠네.
APEX-Interactive Grid/그리드 Action Menu 설정

[ Action Menu ] 표준에서 제공하는 기능을 아래와 같이 제어합니다.

by 태백성 2024. 4. 10.
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");  
        actions.remove("selection-duplicate");  
        actions.remove("selection-revert");  
        actions.remove("selection-refresh");  
        actions.remove("selection-add-row");  
        actions.remove("selection-fill");  
        actions.remove("selection-clear");  
        actions.remove("selection-copy-down");  
        actions.remove("selection-copy");  
    };
    
    return config;
}
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");  
        actions.remove("selection-duplicate");  
        actions.remove("selection-revert");  
        actions.remove("selection-refresh");  
        actions.remove("selection-add-row");  
        actions.remove("selection-fill");  
        actions.remove("selection-clear");  
        actions.remove("selection-copy-down");  
        actions.remove("selection-copy");  
    };
    
    return config;
}

 

Interactive Grid의 Action Menu 기능 테스트한 결과입니다.