I am using Entity Framework Database First
approach in ASP.NET MVC.
I have created models from an existing database and everything works fine.
I am using jqGrid
and trying to create a drop down list for a column which is defined as an Int
in the database.
In the database, the values are either 0 or 1, so in the dropdown list I will have to show two values such as "Import" or "Export" based on whether it is 0 or 1.
Would I be able to handle this scenario in the jqGrid?
Please post any suggestions if you have!