컬럼
input|textarea 타입 limit
input과 textarea 컬럼 타입은 limit 옵션을 지원합니다.
"input", "textarea" 컬럼 타입의 edit 모드 상태일 때 입력제한 방식을 사용할 수 있습니다.
입력제한 타입은 ("all"|"string"|"number"|"other")을 설정할 수 있습니다.
Step 1: 'all'
limit 타입의 'all'은 모든 입력 데이터를 사용하도록 설정합니다.
{key: 'name', type: 'textarea', width: '10%', title: ['all'], options :{limit :{type : 'all' }}},
Step 2: 'number'
limit 타입의 'number'는 데이터가 숫자만 입력이 되도록 설정합니다.
{key: 'cost', type: "input", width: '8%',title: ['number'], options :{limit :{type : 'number' }}},
Step 3: 'string'
limit 타입의 'string'은 숫자를 제외한 데이터가 입력이 되도록 설정합니다.
{key: 'email', type: "input", width: '15%', title: ['string'],options :{limit :{type : 'string' }}},
# Step 4: 'other'
limit 타입의 'other'는 exclude로 입력 제한 설정한 문자를 제외한 데이터가 입력이 되도록 설정합니다.
{key: 'email', type: "textarea", width: '15%', title: ['other'],options :{limit :{type : 'other' , exclude : '입력'}} },
all
number
string
other