Showing posts with label telerik. Show all posts
Showing posts with label telerik. Show all posts

Wednesday, May 4, 2011

Telerik Client AJAX callback

Calling from client back to server through AJAX

Monday, April 11, 2011

telerik excel export style

Good demo to show you how you can change the look and feel

How to change sheet name.

In ExcelMLExportRowCreated  event,

e.Worksheet.Name = "Some Worksheet Name";

Wednesday, April 28, 2010

RadWindows pop up position

Want to control your radwindows pop up position, check out this post to save your life.

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