Click here to Skip to main content
15,887,596 members
Please Sign up or sign in to vote.
3.35/5 (3 votes)
See more:
Hi guys,

i'm using bootstrap theme,
where in ASP.NET page i have a repeater in which i'm binding Web User Control,

In the web user control i have one textbox with AjaxCalendarExtender.

The issue is:
The calendar is not displaying 'Thu, Fri n Sat' days.

code of web user control:
<table>
<tr>
   <td>
            Issue Date
        </td>
        <td>
         <asp:TextBox ID="txtppisdate" CssClass="input-large" runat="server"></asp:TextBox>
                     
        <asp:CalendarExtender ID="CalendarExtender2" runat="server"
                         PopupButtonID="lbnppisdate" TargetControlID="txtppisdate">
                        </asp:CalendarExtender></td>
    </tr>


asp.net code of repeater, where i'm placing this web user control
<asp:UpdatePanel ID="UpdatePanel2" runat="server">
                       <ContentTemplate>
                           <asp:Repeater ID="Repeater1" runat="server">
                               <HeaderTemplate>
                                   <table class="table table-bordered">
                                       <thead class="color-1">
                                           <tr>
                                               <th>
                                                   S.No#
                                               </th>
                                               <th>
                                                   Details
                                               </th>
                                           </tr>
                                       </thead>
                                       <tbody>
                               </HeaderTemplate>
                               <ItemTemplate>
                                   <tr id="itemrow">
                                       <td valign="middle" style="width: 50px">
                                           
                                               <%# Container.ItemIndex + 1 %>
                                           
                                       </td>
                                       <td>
                                           <uc1:FamilyPassport ID="FamilyPassport1"  runat="server" />
                                       </td>
                                   </tr>
                               </ItemTemplate>
                               <FooterTemplate>
                                   </tbody> </table>
                               </FooterTemplate>
                           </asp:Repeater>
                       </ContentTemplate>
                   </asp:UpdatePanel>

Can anyone plzzz help me,

Thanks
Posted
Updated 30-Apr-14 21:12pm
v2
Comments
Please post the codes.
abdul subhan mohammed 3-May-14 5:44am    
plz check, i have added the code.
ZurdoDev 1-May-14 9:34am    
My guess is you have some CSS messing things up so that they aren't visible.
abdul subhan mohammed 3-May-14 6:00am    
Yes, U was rit, when i removed css, i got dis... thanks... RyanDev
ZurdoDev 3-May-14 11:37am    
Glad to hear. I'll post as solution so it no longer shows up as unanswered.

1 solution

My guess is you have some CSS messing things up so that they aren't visible. If you use the developer tools of whatever browser you are using you should be able to trace which CSS is causing the issue. It may be that your own is overwriting something.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900