|
code
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Gridview Header Template sortingHello All,
I have a Gridview with a Header Template on one of the columns. I would like to sort by this column. How do I accomplish that? Any help is very much appreciated. Note: I'm able to get the sorting to work in all the other columns. Thanks in advance, Felix.J Hi Felix,
Thank you for your post. Based on my understanding, the issue is: You are using a Header Template in one of the TemplateField column and want to know how to sort by that column in GridView. If I've misunderstood anything, please feel free to post here. I think all you need to do is make sure that there's a control in the Header Template that have correct CommandName and CommandArgument set, for example: <asp:TemplateField> <ItemTemplate> <%#Eval("ProductName") %> </ItemTemplate> <HeaderTemplate> <asp:LinkButton ID="link1" runat="server" CommandName="Sort" CommandArgument="ProductName" Text="Hello"></asp:LinkButton> </HeaderTemplate> </asp:TemplateField> The key properties is that we set CommandName="Sort", and CommandArgument="ProductName" which is the bound field name. Hope this helps. Please feel free to post here if anything is unclear. Regards, Walter Wang Microsoft Online Community Support ================================================== When responding to posts, please "Reply to Group" via your newsreader so that others may learn and benefit from your issue. ================================================== This posting is provided "AS IS" with no warranties, and confers no rights.
how to get the text in JS of a cell created on server?
why does this not work? Retrieving Asp.treeview checked checkbox information Uploading to a folder outside the www ... ? can get forecolor but not background color in Javascript Web User Controls(ascx) 1.1 VS 2.0 questions about Controls.add HyperLink control vs. Firefox FormView/Repeater/ Eval(FormView data) FormView - set mode in aspx based on url param |
|||||||||||||||||||||||