GridColumnStyle and custom textBox or control

Jarod

Regular
Joined
Feb 5, 2003
Messages
82
Location
Bruxelles
I have a question about TableStyle. It offers the possibility to display DataGridTextBoxColumn or DataGridBoolColumn.
What else if I want to display a columns of buttons ? or a columns containing my own custom TextBox?

I wonder that I have to derive from GridColumnStyle to do that but is there anybody that have an example ?

Thanks,
 
.NET only comes with a standard TextBox and a Checkbox to go in the grid. Anything else will have to be coded yourself (or taken from other sample code) or bought (through a 3rd party vendor). I'd google for "DataGridColumnStyle combobox" if you want to code this yourself.

The first hit returned [URL="http://www.codeproject.com/useritems/DataGridComboBoxColumn.asp]this[/URL].

-Nerseus
 
Back
Top