HighTechTalks DotNet Forums  

Disable datagridview sorting

ASP.net Data Grid Control microsoft.public.dotnet.framework.aspnet.datagridcontrol


Discuss Disable datagridview sorting in the ASP.net Data Grid Control forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
Matthew Humphrey
 
Posts: n/a

Default Disable datagridview sorting - 10-08-2006 , 07:56 PM






I have a DataGridView control, and i would like to disable the ability to
resort data rows by clicking on a colum header. Could someone please help
with this?

Thanks
MATT



Reply With Quote
  #2  
Old   
Bruno Alexandre
 
Posts: n/a

Default Re: Disable datagridview sorting - 10-12-2006 , 11:39 AM






<asp:GridView AllowSorting="false" ... />

myGridView.allowsorting = false

--

Bruno Alexandre
København, Danmark

"a portuguese in Denmark"


"Matthew Humphrey" <mhumphrey927 (AT) hotmail (DOT) com> escreveu na mensagem
news:eaLLYVz6GHA.4620 (AT) TK2MSFTNGP02 (DOT) phx.gbl...
Quote:
I have a DataGridView control, and i would like to disable the ability to
resort data rows by clicking on a colum header. Could someone please help
with this?

Thanks
MATT




Reply With Quote
  #3  
Old   
Capri
 
Posts: n/a

Default Re: Disable datagridview sorting - 11-20-2006 , 07:31 AM



There is no such property for datagridview control, that allows sorting for all columns in the grid!!!!
---
Posted via DotNetSlackers.com

Reply With Quote
  #4  
Old   
IvanK@coherentsolutions.com
 
Posts: n/a

Default Re: Disable datagridview sorting - 12-07-2006 , 09:50 AM



foreach (DataGridViewColumn column in
this.dataGridView.Columns)
{
column.SortMode =
DataGridViewColumnSortMode.NotSortable;
}


Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.