페이지 트리

버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

...


NameValueDescription

QueryEditor1QueryEditor 기능 Disable

StyleModule 2

iMTX_CSS.xlam 모듈 로딩 Disable


StyleCopy4iMTX_CSS.xlam 모듈 로딩이 되어있을때 pivot, list 공통 style 복사기능 Disable

QueryEditorSchema64QueryHistory 기능 Disable


QueryEditor 

StyleModule

옵션적용전적용후

Image Modified

Image Modified


StyleCopy

옵션적용전

적용후

Image Added

Image Added


QueryEditorSchema

옵션적용전

적용후

Image Added

Image Added



코드 블럭
themeMidnight
title예제
var SetiMATRIXPropertyEx = function(obj)
{
    try
    {
        obj.Property.DisableFeature |= 1;  //QueryEditor 기능 Disable
        obj.Property.DisableFeature |= 2;  //iMTX_CSS.xlam 모듈 로딩 Disable
        obj.Property.DisableFeature |= 4;  //pivot, list 공통 style 복사기능 Disable
        obj.Property.DisableFeature |= 64;  //퀄리 에디터 schema 기능 Disable
 
    }catch(e){
        console.log("i-MATRIX6 ViewerEX event[SetiMATRIXPropertyEx] js err::" + e.message); 
    }
}