I have a datagrid, which is bound to a datatable with 4 or 5 columns, which in turn gets its data through a function from an xml document. now i need to have an ID column for things the datagrid the does, but don't want it to be visible. i tried using:
mydatagrid.columns(1).visible = false
but since the columns are bound at runtime, they appear when the page runs, but if i have it count the columns, the only one it knows is the one created at design time with the "select" button in each row. so is there a way to keep a bound column there, but make it invisible to the user?