0

sencha touch2 の selectfield に色を付けるための特定の CSS はありますか?

現在の私のselectfieldコードは次のとおりです。

{
    xtype: 'selectfield',
    options: [
    {text: 'AI',  value: 'first'},
    {text: 'AK', value: 'second'},
    {text: 'BR',  value: 'third'}
    ]
}
4

2 に答える 2

3

選択フィールドに別の css クラスを使用できます。「xtype」値の後に「 css: 'yourclassname' 」を使用し、クラスを次のように定義します。

.yourclassname{ background-color:#000;color:#fff;font:normal 12px Arial;}

だからあなたのコードは

              xtype: 'selectfield',
              cls:  'yourclassname',
              options: [
                        {text: 'AI',  value: 'first'},
                        {text: 'AK', value: 'second'},
                        {text: 'BR',  value: 'third'}
                        ]

ありがとう

于 2012-06-04T08:30:28.393 に答える
0

確認してください: http://docs.sencha.com/touch/2-0/#!/guide/theming

Sass & Compass を使用することは、アプリのスタイルを設定するための正しい方法です!

于 2012-06-04T08:41:18.513 に答える