Hi All,
I am using RadScheduler
I want to show 3 link in each appointment of radscheduler.
so i added 3 link button in appointment template of radschedular as follows
aspx page tags are follows
AllowDelete="False" AllowInsert="False" DataEndField="STARTTIME"
DataKeyField="UNIQUEID" DataRecurrenceField="contact"
DataRecurrenceParentKeyField="contact" DataStartField="STARTTIME"
DataSubjectField="subject"
Skin="Outlook">
<appointmenttemplate>
<asp:LinkButton ID="lbtnButton1" runat="server"</asp:LinkButton>
<asp:LinkButton ID="lbtnButton2" runat="server"</asp:LinkButton>
<asp:LinkButton ID="lbtnButton3" runat="server"</asp:LinkButton>
</appointmenttemplate>
<timelineview userselectable="false" /></telerik:RadScheduler>
from serverside event i assign data to it.
dsTemp = Me.Session("CalenderData")
If Not String.Compare(Convert.ToString(e.Appointment.ID), "") = 0 Then
Dim sContactId As String = ""
Dim lblButton As LinkButton = CType(e.Container.FindControl("lbtnButton1"), LinkButton)
lblButton.Text = e.Appointment.Subject
lblButton.ToolTip = e.Appointment.RecurrenceRule lblButton.Attributes.Add("onclick", "OpenWindow(); return false;")
...
. .
..
end sub
While nevgating from day view to month view/week view or from monthview to dayview.
it takes more time to load.
How can reduce its loading time.