I am using a Rad Scheduler in Timeline view to view active "appointments" and I have bound controls to NumberOfSlots and SlotDuration. The problem is if I show 4 slots of 1 week each the headers only show the week start (ie 4/25). Is there a way to change the headers to be a little more intuitive, like... 4/25-5/1, 5/2-5/8, 5/9-5/15?
My second problem is with trying to create an advanced edit/insert template. I have a combobox inside of a radscheduler and I would like to add a second combobox that selects types (1,2,3,4) and filter the Names combobox based on whether the relational table has an entry of type X and Name Y.
So.... Yeah! This is my first post and I really tried to solve these two before coming here. I really appreciate any help, thanks!
My second problem is with trying to create an advanced edit/insert template. I have a combobox inside of a radscheduler and I would like to add a second combobox that selects types (1,2,3,4) and filter the Names combobox based on whether the relational table has an entry of type X and Name Y.
<asp:SqlDataSource runat="server" ID="GrabScheduling" ConnectionString="<%$ ConnectionStrings:Server %>" SelectCommand="GetApt_By_ProjectID" SelectCommandType="StoredProcedure" > <SelectParameters> <asp:ControlParameter ControlID="ProjectStatus" Name="pstat" /> </SelectParameters></asp:SqlDataSource><Tel:RadGrid runat="server" ><Tel:RadScheduler runat="server" ID="RadScheduler1" DataSourceID="GrabScheduling" StartInsertingInAdvancedForm="true" DataKeyField="ID" DataStartField="Start" DataEndField="End" DataSubjectField="CName" CustomAttributeNames="NameID"> <AdvancedEditTemplate> <asp:SqlDataSource runat="server" ID="SelectAvailNames" ConnectionString="<%$ ConnectionStrings:Server%>" SelectCommand="Get_Name_Timeslot_Availability" SelectCommandType="StoredProcedure" > <SelectParameters> <asp:QueryStringParameter QueryStringField="PID" Name="PID" /> <asp:ControlParameter ControlID="startDate" Name="Start" /> <asp:ControlParameter ControlID="endDate" Name="End" /> </SelectParameters> </asp:SqlDataSource> <Tel:RadComboBox runat="server" ID="NameMems" AllowCustomText="true" DataSourceID="SelectAvailNames" DataTextField="Name" DataValueField="ID" MarkFirstMatch="true" SelectedValue='<%# Bind("NameID")%>' > <ItemTemplate> <div<%# If(Eval("AlreadyScheduled"), " style=""background-color: pink;""", "")%>> <%# Eval("Name")%> </div> </ItemTemplate> </Tel:RadComboBox> </AdvancedEditTemplate></Tel:RadScheduler>So.... Yeah! This is my first post and I really tried to solve these two before coming here. I really appreciate any help, thanks!