Ask a questionAsk a question
 

AnswerHow to show/hide column in GridView

  • Wednesday, March 01, 2006 9:23 AMSteven Khiem Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    Hi everybody,

    Please help me show/hide column in GridView of Avalon. Datagridview of window form 2.0 has visible property in order to show/hide columns.

    Every body solved my issue, please let me knows.

    Thanks.

    Steven

Answers

  • Wednesday, March 01, 2006 4:08 PMMichaelLattaModeratorUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer
    To hide a column just set the width to 0.  To show it again set the width to auto.
  • Friday, December 15, 2006 7:05 PMBrownie PointsMVP, ModeratorUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer
    That's for ASP Gridviews. However, it's good that we could revisit this matter. I think that setting Visibility to collapsed should do what the original poster wants.

All Replies

  • Wednesday, March 01, 2006 4:08 PMMichaelLattaModeratorUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer
    To hide a column just set the width to 0.  To show it again set the width to auto.
  • Thursday, March 02, 2006 2:16 AMSteven Khiem Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    Hi Michael

    I set width property = 0.However, I still resize this column when I move mouse on header column.

    Do you have another solution ?

    Thanks

    Steven

  • Friday, March 03, 2006 6:41 AMzhili Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    How about using add/remove column since GridView is just a "view" of tabular data. Is that ok for your scenario?
  • Thursday, March 09, 2006 1:56 AMSteven Khiem Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    Sorry, that is not my scenario, You can take a look DataGridView of Window Form 2.0. when I set DataGridViewColumn.Visible = False, this column is hided, and then DataGridViewColumn.Visible = True this column is showed again.

    So far, is my scenario is clear ?

    Thanks for your help, I'm looking forward to hearing from you.

    Steven

  • Thursday, March 09, 2006 2:48 AMzhili Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    Currently GridView doesn't provide such a property for column. My point is, in most cases, you can use Add/Insert/Remove method in GridViewColumnCollection to have the same effect of show/hide. 

  • Wednesday, March 22, 2006 9:48 PMJames_Lin Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    use this
    GridView1.Columns[0].Visible = false;
  • Wednesday, March 29, 2006 8:03 PMAhmed_khemiri Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    the problem that i use an object data source that's why i must use autogeneratecolumn.
    and when i use it i can't use gridview.colomns[0] because the gridview don't see the colomn because of autogeneratecolumn. please help  me
    thank you.
  • Wednesday, April 26, 2006 9:48 PMWPFMonkey Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    Using the latest CTP trying to set the visibility of a column gives the following compilation error:

    Error 10 'System.Windows.Controls.GridViewColumn' does not contain a definition for 'Visible'

    So is changing the width the only way to accomplish this?  I'm imagining allowing the user to show/hide columns in a GridView to suit their needs.

  • Saturday, July 29, 2006 9:09 AMrupesh_Sidpara Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    hi
  • Saturday, July 29, 2006 2:45 PMThomas LEBRUNMVPUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    Acording to the GridViewColumn properties (http://windowssdk.msdn.microsoft.com/en-us/library/system.windows.controls.gridviewcolumn_properties.aspx), it looks like to be the best way to accomplish this.

     

    Maybe you can try to change the ColumnTemplate: I can't test now but maube it will work :)

     

    Bye

  • Saturday, July 29, 2006 3:29 PMBrownie PointsMVP, ModeratorUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    Column visibility...it's an easy enough task to do. I'll make sure that goes into the spec for the WPFToolbelt Grid. Although the GridView is pretty good...it doesn't have a lot of the convenience methods that the DataGridView in Winforms 2.0

    See my blog entry to see the functionality that has been implemented or planned for the first release of the SmartDataGrid.

  • Friday, December 15, 2006 1:25 PMasadnaeem Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    Here i found the solution

    http://www.beansoftware.com/ASP.NET-Tutorials/GridView-Hidden-Column.aspx

    Thanks and Best of Luck

    Asad Naeem

  • Friday, December 15, 2006 7:05 PMBrownie PointsMVP, ModeratorUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer
    That's for ASP Gridviews. However, it's good that we could revisit this matter. I think that setting Visibility to collapsed should do what the original poster wants.
  • Wednesday, August 20, 2008 7:07 AMNilesh Makwana Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Hello Steven,

    this is for somebody who still has the same problem and needs a solution:

    I had the same problem and  I solved it.

    Can u just name the Gridview using its x:Name property, like

    <GridView x:Name="gvCustomer" >

    and then in programming use this :

    gvCustomer.Columns.RemoveAt(0);


    to hide the first column.

    alternatively you can also use gvCustomer.Columns.Remove to remove a specific gridviewColumn.

    Nilesh
    • Edited byNilesh Makwana Wednesday, August 20, 2008 7:08 AMcomment for reference
    •  
  • Wednesday, August 12, 2009 3:51 PMSoftProgrammerr Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Hello all,

    I am having a similar kind of problem and I have not been able to get any solutions so far.

    I have 5 columns in my gridview and I want to hid one of them and show the one hidden in the textbox!
    I have been able to hid the column but when I hid it I can't retive the data from gridview!
    please help me out.


    Thanks to alll in advance
  • Sunday, September 13, 2009 5:27 PMilasuper Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Hello all,

    Use datatable as an datasource.. and before binding to gridview remove column from datatable... tahn bind it in gridview....

    :)

    Happy coding...