1

我想将 SlickGrid 中的前 3 行着色为蓝色。我想知道这样做的简单方法。

我尝试了以下代码,但它不起作用:

data.getItemMetadata = function (index)
{
   if (index == 0 || index == 1 || index == 2)
   {
       return  {cssClasses: "BlueColor"};
   }      
 }
4

1 回答 1

0

您可以使用以下 CSS:

.slick-row:nth-child(-n+3){
    /*BlueColor class contents, if you place it before the .even and .odd classes you will need :important*/
}
于 2015-05-13T15:04:15.483 回答