Reputation: 969
When the calendar pops up, it appears behind the textbox of the successive row,and so hiding a few dates. How can I fix this.
<asp:gridview>
<asp:Templatefield>
<itemtemplate>
<div style="position:relative">
<asp:textbox id="txtDate"/>
<asp:calendarextender popupposition="bottomright"
Targetcontrolid="txtDate"/>
</div>
</itemtemplate>
</asp:Templatefield>
</asp:gridview>
Upvotes: 0
Views: 504
Reputation: 3775
You can set for your "asp:calendarextender" this style
z-index:6500;
Upvotes: 1