GridView control has InsertVisible property but what about EditVisible?

  • Thread starter Thread starter nicomp
  • Start date Start date
N

nicomp

Hey,

Is there a property that I can set programmatically to hide a column
when the user edits a row in a GridView control? I found InsertVisible
but that only applies when a new row is being added, not when an
existing row is being edited.

I can do this...
Me.GridViewSample.Columns.Item(10).InsertVisible = False

How does it work for "edit" mode?

Thanks,

Bill
Cincinnati, OH USA
 
Back
Top