Ruby
Ruby

Reputation: 969

How to style Ajax Calendar inside a gridview

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

Answers (1)

Saeed
Saeed

Reputation: 3775

You can set for your "asp:calendarextender" this style

z-index:6500;

Upvotes: 1

Related Questions