0

私はcssファイルでsparkデータグリッドをカスタマイズしようとしています。すべての線が白であるため、alternateItemColorsプロパティに問題があります。同じコードがmx|DataGridで正常に機能します

   s|DataGrid
    {

        backgroundAlpha: 0.6;
        borderThickness: 1;
        borderColor: #0085Ac;
        /* Couleur de la zone de titre  */
        /*headerColors: #006699, #6ea4f8;*/
        headerColors : #6db8e0, #50a3ce;
        horizontalGridLines: false;
        verticalGridLines: true;
        verticalGridLineColor: #003366; 
        alternatingItemColors: #ffffff, #eeeeee;
        rollOverColor: #b3b7d9;
        textRollOverColor: #0c1e37;
        selection-color:#66B0C0;
        color :#0c1e37;

        headerStyleName: "mydataGridHeaderStyle";
    }

助けてくれてありがとう

4

1 に答える 1

0

Spark DataGrid でスタイル名が変更されたようです。現在、alternatingRowColorsという名前のスタイルがあります

于 2012-05-22T21:24:09.403 に答える