Hello; I have two questions.
What is the difference between the Visible property and the Display property on a RadGrid's Column definition?
For example:
Also, is there a way to disable a field (specifically a GridBoundColumn) from being displayed in edit mode? I have tried visible=false and display=false, but the field is still displayed in edit mode (EditForms flavor).
Thanks,
Matthew
What is the difference between the Visible property and the Display property on a RadGrid's Column definition?
For example:
| <rad:RadGrid ID="gdCompanies" runat="server"> |
| <MasterTableView AutoGenerateColumns="false" EditMode="EditForms"> |
| <Columns> |
| <rad:GridBoundColumn DataField="CompanyId" UniqueName="CompanyId" |
| Visible="false" |
| Display="false"/> |
| </Columns> |
| </MasterTableView> |
| </rad:RadGrid> |
Also, is there a way to disable a field (specifically a GridBoundColumn) from being displayed in edit mode? I have tried visible=false and display=false, but the field is still displayed in edit mode (EditForms flavor).
Thanks,
Matthew