or
<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> |
<telerik:RadAjaxManagerProxy ID="RadAjaxManager1" runat="server"> |
<AjaxSettings> |
<telerik:AjaxSetting AjaxControlID="btnLogin"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="btnLogin" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
</AjaxSettings> |
</telerik:RadAjaxManagerProxy> |
<table class="content" cellpadding="0" cellspacing="0" style="width: 100%;"> |
<tr> |
<td class="controlLabel" style="width: 10%;">Login:</td> |
<td> |
<asp:TextBox runat="server" ID="editLogin" Columns="40"></asp:TextBox> |
<span class="controlLabel">@KimballMidwest.com</span> |
</td> |
</tr> |
<tr class="spacerRow"><td></td></tr> |
<tr> |
<td class="controlLabel">Password:</td> |
<td> |
<asp:TextBox runat="server" ID="editPassword" Columns="40" TextMode="Password"></asp:TextBox> |
</td> |
</tr> |
<tr> |
<td></td> |
<td class="controlLabel"> |
<asp:CheckBox runat="server" ID="chkRememberMe" Text="Remember Me" /> |
</td> |
</tr> |
<tr class="spacerRow"><td></td></tr> |
<tr> |
<td></td> |
<td class="controlLabel"> |
<asp:Button runat="server" ID="btnLogin" Text="Login" style="width: 80px;" OnClick="btnLogin_Click" |
UseSubmitBehavior="true"/> |
</td> |
</tr> |
</table> |
</asp:Content> |
I don't want see the appointment details in the month view and I don't want to see the day view if I am clicking the More Link for appointments in the month view of the ASP .Net Ajax scheduler control. I have set the property MonthView.VisibleAppointmentsPerDay = 0. After that, appointment details are not visible in the month view, but still the more link is visible. Is there any way to hide the More link in the month view ?