1

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'
         });
4

1 に答える 1

9

TextArea フィールド コンポーネントの config の fieldStyle を使用する必要があります。

fieldStyle: {
     'fontFamily'   : 'courier new',
     'fontSize'     : '8px'
   }

または、フィールドが既に存在する場合setFieldStyleは、フィールド コンポーネントの関数を使用します。

于 2012-09-19T20:46:26.540 に答える