EasyUI Forum

General Category => EasyUI for React => Topic started by: chrwei on January 27, 2020, 02:52:43 PM



Title: GridColumn cellCss inconsistency
Post by: chrwei on January 27, 2020, 02:52:43 PM
unlike other properties, the cellCss parameters are not passed by name, so to use "value" you must do
Code:
cellCss={(row, value) => ... }
and not
Code:
cellCss={({ value }) => ... }