【问题标题】:ExtJs - How to style textarea text?ExtJs - 如何设置 textarea 文本的样式?
【发布时间】:2012-09-19 15:37:12
【问题描述】:

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

【问题讨论】:

    标签: css extjs styles extjs4.1


    【解决方案1】:

    您应该为 TextArea 字段组件使用配置的 fieldStyle:

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

    或者如果字段已经存在,使用字段组件的setFieldStyle函数。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2020-06-22
      • 2011-07-19
      • 1970-01-01
      • 2011-05-04
      • 1970-01-01
      • 1970-01-01
      • 2014-10-13
      • 1970-01-01
      相关资源
      最近更新 更多