Friday, March 26, 2010

Project Management cum invocing system

This application is cool !

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.

'Clean' Sites

1. This site is very clean and 'light'
2. a lists of 'clean' site

jquery links

1. dialog box
2. validation

execellent icons site !!!

1. iconfinder
2. list of 'free' resources

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\"))