I have a gridview and I want to hide one column (e.g. BirthDate. Please see the code) on mobile/tablet view using bootstrap. How to achieve it? I found a solution, but bootstrap 3 is used. Thank you in advance.
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" CellSpacing="-1" HorizontalAlign="Center" Height="80px" Width="800px" AutoGenerateColumns="False" EnableModelValidation="True" OnPageIndexChanging="GridView1_PageIndexChanging">
<RowStyle BackColor="#FFFBD6" ForeColor="#333333" BorderColor="Black" BorderStyle="Solid" BorderWidth="1px" HorizontalAlign="Center" />
<Columns>
<asp:BoundField DataField="EmployeeID" HeaderText="Employee">
<HeaderStyle BorderColor="#CC9966" />
</asp:BoundField>
<asp:BoundField DataField="Name" HeaderText="Name" />
<asp:BoundField DataField="Surname" HeaderText="Surname" />
<asp:BoundField DataField="BirthDate" HeaderText="Date of Birth">
<ItemStyle HorizontalAlign="Right" />
</asp:BoundField>
</Columns>
</asp:GridView>