프로그래밍/ExtJS

EXTJS textfield 내 글자수 제한 및 영어/한글 사용제한

꿈을드림 2012. 7. 20. 20:08

글자수 8자에 / 영어만 가능

autoCreate: {tag: 'input', type: 'text', size: '20', style :'IME-MODE:DISABLED' ,autocomplete: 'off', maxlength: '8'}

글자수 8자에 / 한글만 가능

autoCreate: {tag: 'input', type: 'text', size: '20', style :'IME-MODE:ACTIVE' ,autocomplete: 'off', maxlength: '8'}