overriden datagridcolumn lost some properties

  • Thread starter Thread starter Sput
  • Start date Start date
S

Sput

I have overriden DataGridTextBoxColumn but it has lost it's overloads (so I
cannot set datatype)? Is there a way to set datatypes to column (and how
come that it does not get datatype property from DataTable which is it's
data source)
 
Sput,

What do you mean it has lost its overloads? You can't lose them, so to
speak.

Also, the DataGridTextBoxColumn should not be determining the type that
is in the column. The structure of the data should do that. The
DataGridTextBoxColumn is only used to display the contents of the column,
not determine what it should be.

What are you trying to do?
 
Actually, I have a problem with sorting (it sorts dates and numbers as text
if I use
my regional settings - numbers have , as decimal separator, dates begin with
day).
 
Back
Top