TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
jonnyy
NA
2
0
Sorting Datagrid with Button Column
Feb 4 2005 3:12 PM
On an ASP.NET page, I've created a DataGrid that is based on a DataView and added a button column to the datagrid so users can click for more details on a certain row. I have also enabled header sorting and that is all working fine. I've created a link that allows the user to sort by multiple rows as well (it simply passes a querystring of what fields to sort by). This is where the problem lies. //I set a variable with the sorting information: m_sortData = "Column1 ASC, Column2 DESC"; //then, I create the DataView using the sort data: dv = new DataView(ds.Tables[0], m_filterData, m_sortData, DataViewRowState.CurrentRows); //then i simply rebind to the DataGrid this.dtgBck.AutoGenerateColumns = false; this.dtgBck.DataSource = dv; this.dtgBck.AllowSorting = true; this.dtgBck.DataBind(); Now all of the columns are sorted, except the button column. It retains the values from the default view and not the newly sorted view. Can anyone figure out what on earth I'm doing wrong? Thanks, j.
Reply
Answers (
0
)
.Net 2.0 and SQL Server 2005
i am tring to call stored procedure from asp net