I'm creating a custom grid that derives from DataGrid. I also have a custom TableCell class which derives from TableCell. Does anyone know the easiest way to replace the TableCell that ASP.NET creates automatically when databinding with my custom TableCell.
I got pretty far by overriding the InitializeCell method of my custom BoundColumn class...but just couldn't get it to work (no matter what, although when the InitializeCell function exited my custom TableCell was properly created, when it rendered it always rendered as if it were an default TableCell with no properties set). Anyone have any ideas on how to do this?