Hi everybody,
I'm working on ASP.NET application. I have a GridView and one of its columns has checkboxes (they are used to set Approve status). I wanted to save the space and tried to set Header attributes to use special character for selected (sort of square root character).
Here is the definition in my ASPX file
It displayes properly in IE, but doesn't display in FireFox. Is there anyway to make some character that would be appropriate for showing a checkbox?
Thanks a lot in advance.
I'm working on ASP.NET application. I have a GridView and one of its columns has checkboxes (they are used to set Approve status). I wanted to save the space and tried to set Header attributes to use special character for selected (sort of square root character).
Here is the definition in my ASPX file
Code:
<asp:TemplateField HeaderText="Ö" SortExpression="Approved">
<%-- <HeaderTemplate>
<asp:CheckBox runat="server" ID="HeaderLevelCheckBox" />
</HeaderTemplate>--%>
<EditItemTemplate>
<asp:CheckBox ID="chkApproved" runat="server" Checked='<%# Bind("Approved") %>' />
</EditItemTemplate>
<ItemTemplate>
<asp:CheckBox ID="chkApproved" runat="server" Checked='<%# Bind("Approved") %>' />
</ItemTemplate>
<HeaderStyle Font-Names="Symbol" />
</asp:TemplateField>
It displayes properly in IE, but doesn't display in FireFox. Is there anyway to make some character that would be appropriate for showing a checkbox?
Thanks a lot in advance.