473,387 Members | 1,693 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Battles with sorting DataGrid control.

Can anyone please tell me what I'm doing wrong here.
I have a Windows Form with a DataGrid on it, and I'm having real problems
with the Sorting.

It is easy to reproduce the problem I have.

If you create a new Windows Application
Put a DataGrid control on it.

Put the following in the onload event of the form:

private void Form1_Load(object sender, System.EventArgs e)
{
DataGridTableStyle dgts = new DataGridTableStyle();
DataGridTextBoxColumn dgtbc1 = new DataGridTextBoxColumn();
DataGridTextBoxColumn dgtbc2 = new DataGridTextBoxColumn();

dgtbc1.Width = 300;
dgtbc1.HeaderText = "Header1";
dgts.GridColumnStyles.Add(dgtbc1);

dgtbc2.Width = 300;
dgtbc2.HeaderText = "Header2";
dgts.GridColumnStyles.Add(dgtbc2);

dataGrid1.TableStyles.Add(dgts);

DataTable dt = new DataTable("SuperTable");
dt.Columns.Add("One");
dt.Columns.Add("Two");

dataGrid1.DataSource = dt;
}

So by my understanding, I have created a tableStyle and added a couple of
textBoxColumns to it, then applied that style to my datagrid.
I have then created a DataTable, and made that the dataSource of my
dataTable.

If you run the app you should get an empty grid.

In Column1 put the letters a-h
In Column2 put the numbers 1-8
Click on the header of Column1 a couple of times so that the letters are
sorted a-h
Click on the 5 in Column2 and change it to 100.
Try clicking on the header of Column2 to sort the numbers correctly.
Why doesn't that work? The row with '100' in it stays in position, doesn't
get re-sorted.

Note: If you click on a few cells in the table, then it seems to sort itself
out,
but how can I re-produce that in code?

I'm sure that I've done somthing dumb, but I can't see it.
If anyone can cast light on this, I will be most grateful

Regards,

Chris.

Nov 16 '05 #1
2 2153
Chris,

When you type the 100, and then click the header of the grid, I noticed
that the edit mode does not change. This would indicate that the value
hasn't been written to the underlying data table yet, which would explain
why the sort doesn't occur. When you move off the cell, the value is
committed, and then the sort is applied correctly.

In order to commit the edit in code, you have to find the
BindingManagerBase for the data binding (you can pass the data table that
the grid is bound to to the BindingContext property of the data grid to get
the binding manager base). Once you have that, call EndCurrentEdit on the
BindingManagerBase, and the value should be committed to the data table, and
the sort applied.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"ChrisM" <hi****@AskMeIfYouWantIt.com> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
Can anyone please tell me what I'm doing wrong here.
I have a Windows Form with a DataGrid on it, and I'm having real problems
with the Sorting.

It is easy to reproduce the problem I have.

If you create a new Windows Application
Put a DataGrid control on it.

Put the following in the onload event of the form:

private void Form1_Load(object sender, System.EventArgs e)
{
DataGridTableStyle dgts = new DataGridTableStyle();
DataGridTextBoxColumn dgtbc1 = new DataGridTextBoxColumn();
DataGridTextBoxColumn dgtbc2 = new DataGridTextBoxColumn();

dgtbc1.Width = 300;
dgtbc1.HeaderText = "Header1";
dgts.GridColumnStyles.Add(dgtbc1);

dgtbc2.Width = 300;
dgtbc2.HeaderText = "Header2";
dgts.GridColumnStyles.Add(dgtbc2);

dataGrid1.TableStyles.Add(dgts);

DataTable dt = new DataTable("SuperTable");
dt.Columns.Add("One");
dt.Columns.Add("Two");

dataGrid1.DataSource = dt;
}

So by my understanding, I have created a tableStyle and added a couple of
textBoxColumns to it, then applied that style to my datagrid.
I have then created a DataTable, and made that the dataSource of my
dataTable.

If you run the app you should get an empty grid.

In Column1 put the letters a-h
In Column2 put the numbers 1-8
Click on the header of Column1 a couple of times so that the letters are
sorted a-h
Click on the 5 in Column2 and change it to 100.
Try clicking on the header of Column2 to sort the numbers correctly.
Why doesn't that work? The row with '100' in it stays in position, doesn't get re-sorted.

Note: If you click on a few cells in the table, then it seems to sort itself out,
but how can I re-produce that in code?

I'm sure that I've done somthing dumb, but I can't see it.
If anyone can cast light on this, I will be most grateful

Regards,

Chris.

Nov 16 '05 #2
Nicholas,

Thank You 1000 times!

I had guessed that it was probably somthing to do with the data not getting
written back to the DataTable (In fact a DataView of a DataTable) but I had
no idea how to force it through. I have seen BindingContext in other places,
but until now, I haven't really understood what it meant.

EndCurrentEdit works great, now my DataGrid does what I was expecting it to.
For anyone else with this problem:
dataGrid1.BindingContext[dataGrid1.DataSource].EndCurrentEdit();

In my actual app, values in the grid are being changed by code, rather than
being typed in, but I assume that the pricinple is similar. Your proposed
solution certainly seems to work for me anyway.

Once again thanks, you won't believe how crazy this has been driving me!

ChrisM

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in
message news:OW**************@TK2MSFTNGP09.phx.gbl...
Chris,

When you type the 100, and then click the header of the grid, I noticed that the edit mode does not change. This would indicate that the value
hasn't been written to the underlying data table yet, which would explain
why the sort doesn't occur. When you move off the cell, the value is
committed, and then the sort is applied correctly.

In order to commit the edit in code, you have to find the
BindingManagerBase for the data binding (you can pass the data table that
the grid is bound to to the BindingContext property of the data grid to get the binding manager base). Once you have that, call EndCurrentEdit on the
BindingManagerBase, and the value should be committed to the data table, and the sort applied.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"ChrisM" <hi****@AskMeIfYouWantIt.com> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...
Can anyone please tell me what I'm doing wrong here.
I have a Windows Form with a DataGrid on it, and I'm having real problems with the Sorting.

It is easy to reproduce the problem I have.

If you create a new Windows Application
Put a DataGrid control on it.

Put the following in the onload event of the form:

private void Form1_Load(object sender, System.EventArgs e)
{
DataGridTableStyle dgts = new DataGridTableStyle();
DataGridTextBoxColumn dgtbc1 = new DataGridTextBoxColumn();
DataGridTextBoxColumn dgtbc2 = new DataGridTextBoxColumn();

dgtbc1.Width = 300;
dgtbc1.HeaderText = "Header1";
dgts.GridColumnStyles.Add(dgtbc1);

dgtbc2.Width = 300;
dgtbc2.HeaderText = "Header2";
dgts.GridColumnStyles.Add(dgtbc2);

dataGrid1.TableStyles.Add(dgts);

DataTable dt = new DataTable("SuperTable");
dt.Columns.Add("One");
dt.Columns.Add("Two");

dataGrid1.DataSource = dt;
}

So by my understanding, I have created a tableStyle and added a couple of textBoxColumns to it, then applied that style to my datagrid.
I have then created a DataTable, and made that the dataSource of my
dataTable.

If you run the app you should get an empty grid.

In Column1 put the letters a-h
In Column2 put the numbers 1-8
Click on the header of Column1 a couple of times so that the letters are
sorted a-h
Click on the 5 in Column2 and change it to 100.
Try clicking on the header of Column2 to sort the numbers correctly.
Why doesn't that work? The row with '100' in it stays in position,

doesn't
get re-sorted.

Note: If you click on a few cells in the table, then it seems to sort

itself
out,
but how can I re-produce that in code?

I'm sure that I've done somthing dumb, but I can't see it.
If anyone can cast light on this, I will be most grateful

Regards,

Chris.


Nov 16 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Billy Jacobs | last post by:
I have a datagrid control in a web application in which I have both paging and sorting enabled. The sorting works only on the current page. If I am on page 1 and sort by any field, the page...
2
by: DelphiBlue | last post by:
I have a Nested Datagrid that is using a data relations to tie the parent child datagrids together. All is working well with the display but I am having some issues trying to sort the child...
2
by: ChrisM | last post by:
Can anyone please tell me what I'm doing wrong here. I have a Windows Form with a DataGrid on it, and I'm having real problems with the Sorting. It is easy to reproduce the problem I have. If...
2
by: Raj | last post by:
Hi, When we are sorting the DataGrid Boolean column the grid is becoming redcross. I have my own PPMIPDataGridBoolColumn class inherited from System.Windows.Forms.DataGridBoolColumn. In this...
1
by: Jeremy | last post by:
I want my gird to sort only the items on the current page when I click on a column header. I wrote a little test app, but when I sort it pulls in items from other pages and places them on the current...
0
by: Dheeraj Verma via DotNetMonster.com | last post by:
Hi all, I have a asp data grid under which i have another datagrid which is my user control and is autogenerated.Now I am not able to implement sorting in my inner datagrid eventhough I have...
0
by: Dheeraj Verma via DotNetMonster.com | last post by:
Hi all, I have a asp data grid under which i have another datagrid which is my user control and is autogenerated.Now I am not able to implement sorting in my inner datagrid eventhough I have...
2
by: Lars Netzel | last post by:
I have a Datagrid using the Edit/Update mode to alter data in the datasource. I needed to have a bit more flexible interface in the editmode with a design that couldn't work in the columns. So I...
8
by: simchajoy2000 | last post by:
I thought the only thing I had to do to disable column sorting in VB.NET was to set datagrid.AllowSorting = False. Unfortunately this has never worked for me. I discovered another set of code...
3
by: Mark Gilkes | last post by:
Hi, I have an aspx page in which I am building a DataGrid control in the code-behind dynamically. The DataGrid is declared along with BoundColumns and bound to the datasource, then added to a...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.