ExtJs 4.1 で textarea を取得したので、フォント ファミリとサイズを変更したいと考えています。
style : 'font-family: courier new, font-size: 8px'
style : {
'fontFamily' : 'courier new',
'fontSize' : '8px'
}
私もこのように試しました:
oTextarea.el.applyStyles({
'font-family' : 'verdana',
'font-size' : '8px'
});