Friday, March 26, 2010
Mapping Enums to Strings and Strings to Enums in .NET
Came across this article on how to convert enums to string and vice versa in .net, which is pretty interesting to share.
Wednesday, March 24, 2010
Error Msg : No property or field 'xxxID' exists in type 'DataRowView'
If you hit this error when you are using radgrid with objectDataSource, please disable linqExpression by setting EnableLinqExpressions = "false" in the Radgrid properties.
Tuesday, March 23, 2010
telerik grid filtering feature
Telerik grid provide a good feature on filtering. There are two ways you can do filtering,
1. use out of the box filter feature by setting AllowFilteringByColumn="true"
2. set FilterExpression for grid.MasterTableView parameter with (iif(colName== null, \"\", colName).ToString().Contains(\"filterValue\"))
1. use out of the box filter feature by setting AllowFilteringByColumn="true"
2. set FilterExpression for grid.MasterTableView parameter with (iif(colName== null, \"\", colName).ToString().Contains(\"filterValue\"))
Subscribe to:
Posts (Atom)