I'm using GridMVC in my project, This code Show me 0 or 1 :
columns.Add(model => model.ETAT)
.Filterable(true)
.Titled("Etat")
.Sortable(true);
Etat can have only two value Zero or One. So Instead of Showing 0 or 1 I want to display good IF value it's 1, (etat = 1) ELSE show bad( etat = 0).

How to do it ?
Thank's.