I have a gridview populated with data and based on Chekbox selection I would like to hide one field on editform. any one can please guide on this,what would be better to hide the column on client side or server side code?, Please find the below code for your reference (below is 4 columns (4 fields) in devexpress Grid, when we select checkbox then one of column(Dropdown) should be hide.).
<dx:GridViewDataTextColumn FieldName="Name" VisibleIndex="1" Caption="Name">
</dx:GridViewDataTextColumn>
<dx:GridViewDataTextColumn FieldName="Email" VisibleIndex="2" Caption="Email">
</dx:GridViewDataTextColumn>
<dx:GridViewDataCheckColumn FieldName="IsGraduate" VisibleIndex="3" Caption="Is Graduate ">
</dx:GridViewDataCheckColumn>
<dx:GridViewDataComboBoxColumn Caption="Degree" FieldName="Degree"
ShowInCustomizationForm="True" VisibleIndex="4">
<PropertiesComboBox DataSourceID="DegreeDataSource" TextField="Degree" ValueField="Id">
</PropertiesComboBox>
</dx:GridViewDataComboBoxColumn>