or
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="dock.aspx.vb" Inherits="TestaTredjepartWeb.dock" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <div> <asp:ScriptManager ID="s" runat="server" ScriptMode="Debug"> </asp:ScriptManager> <telerik:RadDockZone runat="server" ID="dz" RenderMode="Lightweight"> <telerik:RadDock runat="server" ID="RadDock2" RenderMode="Lightweight"> <ContentTemplate> <asp:Button ID="btn" runat="server" Text="Click me" OnClientClick="var divExpand = $get('divExpand'); if(divExpand.style.display=='none') divExpand.style.display='block'; else divExpand.style.display='none'; return false;" /> <div id="divExpand" style="display: none"> Expanded </div> </ContentTemplate> </telerik:RadDock> </telerik:RadDockZone> </div> </form></body></html>private void BindScheduler() { #region Scheduler List<AppointmentInfo> appList = new List<AppointmentInfo>(); DateTime startDate, endDate; // Coming from the db, just removed the code below in the for loop.
string name; for (int schedCount = 0; schedCount <= _groupScheduleList.Count - 1; schedCount++) { Appointment appSched = new Appointment(); appSched.ID = schedCount; appSched.Start = startDate; appSched.End = endDate; appSched.Subject = name; AppointmentInfo appI = new AppointmentInfo(appSched); appList.Add(appI); } timeSlotScheduler.DataSource = appList; timeSlotScheduler.DataBind(); #endregion }

<telerik:RadComboBox ID="radAttributeValue" runat="server" CheckBoxes="true" EnableCheckAllItemsCheckBox="false" AutoPostBack="true" DataCheckedField="selectionMade" AllowCustomText="false" onselectedindexchanged="radAttributeValue_SelectedIndexChanged">