Stories recently tagged with 'GridView'

Perform actions before a row is deleted from a GridView (geekzilla.co.uk)

submitted by marshp3marshp3(965) 5 years, 9 months ago

See how the RowDeleting Event of a GridView can be used to perform actions before a row is deleted. This example also demonstrates how to access controls within the gridview in order to access data associated with the record being deleted or inserted. read more...

add a comment |category: |Views: 7

tags: another

Make the GridView control accessible(madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 5 years, 9 months ago

It is not apparent that you have to dig into the header and footer rows and add a TableSection. This should be done automatically or at least be easy to set through a property at design time. I think it is an obvious mistake, but luckily for us, it is easy to fix if you know where to look. read more...

add a comment |category: |Views: 35

tags: another

GridView DropDownList Pager(weblogs.asp.net)

submitted by dalzieldalziel(6230) 5 years, 9 months ago

This post shows you how to add a custom DropDownlist pager and pager buttons to the GridView. read more...

add a comment |category: |Views: 258

tags: another

GridView: Creating groups and summaries with 2 lines of code(agrinei.com)

submitted by simonebsimoneb(5450) 5 years, 10 months ago

GridView has a lot of improvements over the DataGrid but it still lacks some very important features. A recurring requirement not available in the GridView is to create groups and summaries. To create summaries we can easily code the RowDataBound event. Grouping is a more complex task, and involves more coding and debugging. But when we need to combine these two features the things really start to get messy. With this in mind I have implemented the GridViewHelper, as the name suggests, a helper class to aid the creation of groups and summaries. read more...

add a comment |category: |Views: 118

tags: another