Hi,
I have to create a customized datagridview to enable the expandable columns. If anyone already worked out this, please help me on this.
Thanks in advance,
Natraj
Hi,
I have to create a customized datagridview to enable the expandable columns. If anyone already worked out this, please help me on this.
Thanks in advance,
Natraj
Expandable columns in DataGridView
JohnSLG
George2
If you decide to use a DGV you could play with the Visible property of the DGVColumns... which results in a hide/show effect...
A proof of concept at: http://www.timvw.be/hide-and-unhide-columns-or-rows-in-the-datagridview/
Beetle54
Thanks for your reply !
Expandable column in the sense drilling down the columns....
One column can hide multiple columns. The user can see the child columns by clicking the + button before the column name
Something like this..
Stage 1 : (Before clicking the + button )
Products + Categories Release Date
Product1 ... 11/07/2006
Stage 2 : After clicking the + button
Products - Categories Release Date
Category 1 Category 2 Category 3
Product1 1 2 3 11/07/2006
Note : Bold letters are column names..Unbold letters are values
Ouput should be something like this.
Thanks,
Natraj.
prasoot