So I have an <aspanel> control with it's GroupingText property set which will end up rending as a <fieldset> control.
Inside this Panel/Fieldset I have a button and have it's style property set to "float: right".
If I view this in IE8 or Chrome the button shows up fine but when I view it in IE9, the button disappears.
I can view the source and see that the element is still actually there, it's just not displayed.
Anyone else come across this issue or know why it would be happening?
Example:
<aspanel ID="pnDateRange" runat="server" GroupingText="Date Range" Width="500" DefaultButton="btnFilter">
Inside this Panel/Fieldset I have a button and have it's style property set to "float: right".
If I view this in IE8 or Chrome the button shows up fine but when I view it in IE9, the button disappears.
I can view the source and see that the element is still actually there, it's just not displayed.
Anyone else come across this issue or know why it would be happening?
Example:
<aspanel ID="pnDateRange" runat="server" GroupingText="Date Range" Width="500" DefaultButton="btnFilter">
<asp:Button ID="btnFilter" runat="server" Text="Filter" style="float: right" />
</aspanel>