<PRE id="RadEditorEncodedTag" style="DISPLAY:none"> NjcmlwdD5kb2N1bWVudC5nZXRFbGVtZW50QnlJZCgndGVzdDEnKS5vbmNsaWNrPWZ1bmN0aW9uKCl7YWxlcnQoIjEiKX08L3NjcmlwdD4=
</PRE>
I have also added javascript code below in MOSSEditorTool.js located at C:\Program Files\Common Files\Microsoft Shared\web server extensions\wpresources\RadEditorSharePoint\4.4.1.0__1f131a624888eeed\RadControls\Editor\Scripts\7_2_1
Telerik.Web.UI.Editor.EncodeScriptsFilter.prototype.getHtmlContent = function(content)
{
return content;
};
Telerik.Web.UI.Editor.EncodeScriptsFilter.prototype.getDesignContent = function(content)
{
return content;
};
dock.set_closed(
false);
and
dock.set_closed(true)
;
are now handled by Dock's OnClientCommand handler.
This is fine, but in that handler I have no idea if I am closing the doc or opening, because the boolean parameter is not available, which causes a problem since we have the following:
if
(cmd.get_name() == "Close" )
{
do some work...
}
I never had this issue before because OnClientCommand was only hit when the user pressed the X button on the Dock.
Please help, as we


Hi,
I'm using the advanced insert with custom attributes and everything is working fine. However, I'd like to use the default date/time picker in the advanced template as opposed to just texboxes which have 'start' and 'end' dates bound to them. Could somebody tell me how to implement this?
Thank You.
In our implementation i found ‘Replace All’ does not replace the first string occurrence although it replaces all the other occurrences of string.

| <asp:ScriptManagerProxy runat="server" ID="AppointmentWebServiceScriptManager"> |
| <Services> |
| <asp:ServiceReference Path="~/WebServices/SchedulerWebService.asmx" /> |
| </Services> |
| </asp:ScriptManagerProxy> |
| <telerik:RadScheduler runat="server" ID="RadScheduler1" SelectedView="WeekView" StartEditingInAdvancedForm="true" DataKeyField="AppointmentID" |
| CustomAttributeNames="Customer" EnableCustomAttributeEditing="true" StartInsertingInAdvancedForm="true"> |
| <AdvancedForm Modal="true" /> |
| <TimelineView GroupBy="Employee" GroupingDirection="Vertical" SlotDuration="1:00:00" NumberOfSlots="20" /> |
| <WebServiceSettings Path="~/WebServices/SchedulerWebService.asmx" ResourcePopulationMode="ServerSide" /> |
| <AdvancedEditTemplate> |
| <div><asp:Label ID="TestEdit" runat="server" Text="TEST"></asp:Label></div> |
| </AdvancedEditTemplate> |
| <AdvancedInsertTemplate> |
| <div><asp:Label ID="TestInsert" runat="server" Text="TEST"></asp:Label></div> |
| </AdvancedInsertTemplate> |
| </telerik:RadScheduler> |
| <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> |
| <Scripts> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Common/Core.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Ajax/Ajax.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Common/jQuery.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Common/jQueryPlugins.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Common/Navigation/NavigationScripts.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Calendar/RadDatePicker.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Input/TextBox/RadInputScript.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Input/DateInput/RadDateInputScript.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Calendar/RadCalendarCommonScript.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Calendar/RadCalendarScript.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Calendar/RadDateTimePickerScript.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/RadSchedulerScripts.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Scheduling/AdvancedTemplate.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Views/Month/Model.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Views/Month/GroupedByDate/Model.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Views/Month/GroupedByResource/Model.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Views/Timeline/Model.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Views/Timeline/GroupedByDate/Model.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Views/Timeline/GroupedByResource/Model.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Views/Week/Model.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Views/Week/GroupedByDate/Model.js" /> |
| <asp:ScriptReference Path="~/thirdparty/RadControlsAjax/Scripts/Scheduler/Views/Week/GroupedByResource/Model.js" /> |
| <asp:ScriptReference Path="~/includes/Scheduler.js" /> |
| </Scripts> |
| </telerik:RadScriptManager> |
| <telerik:RadScheduler ID="RadScheduler1" runat="server" DataKeyField="ID" DataStartField="Start" DataEndField="End" DataSubjectField="Title" |
| ShowHeader="false" AllowInsert="true" |
| FirstDayOfWeek="Monday" LastDayOfWeek="Friday" |
| ShowAllDayRow="true" |
| OnClientAppointmentInserting="AppointmentInserting" OnClientAppointmentEditing="AppointmentEditing" OnAppointmentDelete="RadScheduler1_AppointmentDelete" |
| OnClientAppointmentResizeEnd="AppointmentResizeEnd" OnClientAppointmentMoveEnd="AppointmentMoveEnd" > |
| <TimelineView UserSelectable="false" /> |
| </telerik:RadScheduler> |