473,503 Members | 1,691 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 1017
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
2338
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
945
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
368
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
2336
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
2334
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
946
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
1194
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
1293
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
15138
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
3752
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
7278
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,...
0
7328
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
5013
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4672
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3167
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3154
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1512
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
736
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
380
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.