Binding enum to GridView
C#
3
Posts
2
Posters
0
Views
1
Watching
-
hi all, I want to bind enum with a GridView. my enum is like this:
enum tType
{
abc = 1,
xyz = 2,
pqr = 3
}Now i want to display values of this "tType" in my GridView column. Can anybody tell me how to do it? Thanks, Nagendra.
-
hi all, I want to bind enum with a GridView. my enum is like this:
enum tType
{
abc = 1,
xyz = 2,
pqr = 3
}Now i want to display values of this "tType" in my GridView column. Can anybody tell me how to do it? Thanks, Nagendra.
-
Thanks for the reply, but i wanted slightly different result which i achieved using DictionaryEntry object. :)