I’m trying to make a data bound column invisible after data binding, because it won’t exist before data binding. However, the DataGrid.Columns collection indicates a count of 0, making it seem as if the automatically generated columns don’t belong to the collection.
How can I make a column that is automatically generated during binding invisible?
You have to add code to the line item rendering code and set the visibility of that column to false. Even though its bound, the event will be fired for each record and you can manipulate the output.