Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
1k views

.NET / WinForms - Clear a Sort on a DataGridView

What is the proper method to tell a DataGridView to stop sorting? I have a "screen" where I tell the grid programatically to sort by column 4 and ascending. When I switch to another area I want the ...
2
votes
3answers
804 views

Sorting DataTable string column, but with null/empty at the bottom

I need to sort a DataTable or DataGridView by a column that is a string value, but with null/empty values at the BOTTOM when sorting ASCENDING. The DataTable is NOT populated by a SQL statement, so ...
2
votes
1answer
780 views

GridView ASP.NET Sorting

I have an ASP.NET GridView that just won't sort! I'm sure that I am missing something pretty obvious. Page.aspx <asp:GridView ID="TimeAwayGridView" runat="server" ...
1
vote
0answers
66 views

how to sort datagridview ignoring blank rows

I am using a DataGridView control in WinForms to populate data. While sorting it, it considers blank rows as well. I want to move those blank lines to the bottom of the grid. Whatever the sort ...
1
vote
1answer
59 views

GridView isn't paging or sorting when inside a user control

My Gridview won't page or sort. By this I mean that the data in the GridView doesn't change when I try to sort by a column or when I try to page through the GridView. I have it inside an UpdatePanel ...
1
vote
3answers
453 views

GridView Sorting works once only

I have a grid and it is sorting once only in ascending order. Then nothing happens. Please help ASAP !! Code of aspx file: <asp:GridView ID="gdvSignatureLines" runat="server" CssClass="Grid1" ...
1
vote
0answers
466 views

GridView Sorting is not working

Please help me, I set Allowsorting="true" but sorting is not working in my GridView. I want automatic sorting i.e. sorting without handling its event. Here is code of aspx page: <asp:GridView ...
1
vote
0answers
360 views

GWT Table component with grouping, header sorting and grouping

I'm looking for a GWT table component with header sorting, grouping with subfooters and normal footer. I basically want to sum fields for all the groups aswell as a total sum in main footer. Anyone ...
1
vote
0answers
461 views

GridView does not display correcty sorted Data when i click column

Date column does not display in sorted in GridView using vb.net. In sql server the select query is returning records in sorted manner or in order by. But for some reason GridView does not display ...
1
vote
1answer
1k views

WPF Listview SORT and FILTER performance issue

I have listview with custom sort and filter implemented on it...It is textbox based filter , as user types in, items in the listview are filtered. Now...when i apply sort on listview, filter is very ...
0
votes
2answers
25 views

Sorting a php table on the basis of just one particular field

Hi I am trying to sort this table on the basis of $fratio. The one who has the highest $fratio will be placed as Number 1 in the table. Here's the code that I have worked so far - // MySQL ...
0
votes
0answers
46 views

How do I sort table data into 3 columns?

I am new to the forum and have some some research to identify the best way to complete the sorting task that I have to do. It would be great to get some input from you all, though, to make sure that ...
0
votes
0answers
41 views

How to sort Grid Columns in Silverlight with defined images on datagrid

I have a simple data project that has data being filled in it. The data doesn't really have any images, and I determine whether an image should be shown when a user has AudioLink, on the DataContext. ...
0
votes
2answers
575 views

Change sorting image button in gridview

<asp:ImageButton ID="lnkEmpIdUp" runat="server" ImageUrl="~/Images/upArrow.png" CommandName="EMP_ID_NO" OnClick="lnkSorting_Click" /> &nbsp; <asp:ImageButton ID="lnkEmpIdDown" ...
0
votes
1answer
201 views

how to sort the datagridview column Got an error : Argument NUll Exception Was Unhandled

I am binding the data grid view by using the following linq to entity framework query by using the following code.. private void EquipmentFinder_Load(object sender, EventArgs e) { ...
0
votes
2answers
55 views

GridView sorting with additional functions

I have a GridView which is bound automaticaly to a SqlDataSource. I have a function which goes thru the GridView and colors red certain cells according to their content. I also enabled sorting on the ...
0
votes
1answer
692 views

Gridview RowCommand event is fired when I do sorting in gridview

I am trapped in some abnormal problem. When I do sorting in gridview, it fires RowCommand event for that grid instead of sorting event. Below is the HTML code for my grid view. <asp:GridView ...
0
votes
1answer
212 views

How to sort a GridView with a ColumnHeader click when AutoGenerateColumns=“true”

I have a gridview with AutoGenerateColumns="true" (in general I don't know what the columns will be). Is there any easy way to sort the grid by clicking on a column header? The only solutions I have ...
0
votes
0answers
305 views

Sort nested gridview that is bound to outer gridview dataitem

Not able to get sorting to work. Error: Object variable or With block variable not set. Markup <asp:GridView ID="gvSpecList" runat="server" AutoGenerateColumns="false" ShowHeader="false" ...
0
votes
1answer
71 views

Sorting table data with JQuery, table has columns with dates and dollar signs, which plug-in is good?

I have to sort a table and looking for right plugin. Some of the columns have dates and some have currency signs($) as shown below. Are there any JQuery plugins available for sorting this kind of ...
0
votes
1answer
325 views

gridview default sortexpression

Has anyone managed to extend a GridView with default sorting? This seems pretty trivial to me but i can't get it done. The idea is to add a property DefaultSortExpression to a Server Control that ...
0
votes
1answer
184 views

GridView sorting without JavaScript?

When "AllowSorting" is true on an asp.net GridView, it just makes the headers with a SortExpression clickable. Trouble is that it does this with JavaScript links - so with JS turned off you cannot ...
0
votes
1answer
386 views

Ordering Columns in a DataGridView alphabetically

I am using a DataGridView control in a VB.Net application where columns are being added dynamically to a DataTable which is being created in code. I need to order some of the columns alphabetically by ...
0
votes
1answer
2k views

Why doesn't my gridview's column click toggle the sort direction?

Why doesn't my gridview's column click toggle the sort direction? It seems to only sort the rows the first time I click on it, any other clicks just refreshes the page w/o any change in sort ...