Hi,
I'm creating a GridViewDecimalColumn as follows:
 
When setting the FieldName property, if node.Name = tb_Column then everything is fine. However, when node.Name = tb_Column_1 then I get a FormatException - Input string was not in a correct format.
Do I need to format that FieldName property in any special way or something?
Thanks
                                I'm creating a GridViewDecimalColumn as follows:
GridViewDecimalColumn col = new GridViewDecimalColumn();col.Name = node.Name;col.FielName = node.Name;col.HeaderText = friendlyName;When setting the FieldName property, if node.Name = tb_Column then everything is fine. However, when node.Name = tb_Column_1 then I get a FormatException - Input string was not in a correct format.
Do I need to format that FieldName property in any special way or something?
Thanks

