Posted 7 November 2017, 4:06 pm EST
Hi,
I am applying the column formatting using SetSellStyle method. I can see that the styles applied to the column values as expected. However, the column filter values are still showing the raw values (no formats applied). Please find the below code I have used for the same.
With fgGrid
Dim style As CellStyle
style = .Styles( lStyleName)
If lNumberFormat <> String.Empty Then style.Format = lNumberFormat End If .SetCellStyle(rowIndex, colIndex, style) End With
Please let me know, how can I format the filter values as well.