or
function
setDate() {
var
picker = $find(
'<%= dtStart.ClientID %>'
);
var
picker2 = $find(
'<%= dtEnd.ClientID %>'
);
picker2.set_selectedDate = picker.get_selectedDate;
}
.profileBlue
{
width: 126px;
}
.profileBlue .top
{
width: 126px;
height: 8px;
background: url(/images/profileBlueTop.jpg) no-repeat top left;
}
.profileBlue .middle
{
width: 106px;
background-color: #cde6ec;
height: auto;
padding: 0 10px 0 10px;
word-wrap: break-word;
color: #323232;
line-height: 20px;
}
.RadDock .rdLeft, .RadDock .rdRight, .RadDock .rdBottom, .RadDock .rdTop
{
display: none !important;
}
.RadDock .rdContent
{
background-color: Silver;
}
.RadDockZone
{
width: 140px;
}
</
style
>
<
script
type
=
"text/javascript"
>
function SetHandleDock(dock, args) {
dock.set_handle(document.getElementById("Handle_" + dock.get_id()));
}
</
script
>
<
telerik:RadDockZone
ID
=
"RadDockZone1"
runat
=
"server"
>
<
telerik:RadDock
ID
=
"RadDock1"
runat
=
"server"
DockHandle
=
"None"
OnClientInitialize
=
"SetHandleDock"
Index
=
"0"
EnableRoundedCorners
=
"True"
DockMode
=
"Docked"
> <
ContentTemplate
>
<
div
class
=
"profileBlue"
>
<
div
id
=
"Handle_RadDock1"
style
=
"cursor: move;"
class
=
"top"
>
</
div
>
<
div
class
=
"middle"
>
- - - - - - - my code ---
</
div
>
</
div
>
</
ContentTemplate
>
</
telerik:RadDock
>
Dear Sir,
We brought "Telerik Premium Collection for .NET" and for one of our Web Project we have used
"RadEditor for ASP.NET AJAX" and "RadUpload for ASP.NET AJAX", and we want to give source
code of our web Project to our customer
1. Can we give the source code of our web project with the Telerik DLL's (as we have used
"RadEditor for ASP.NET AJAX" and "RadUpload for ASP.NET AJAX" ) in that project.
2. If not what the minimum components we can buy to embedded in to that project.
Thanks,
Regards,
1)
<
asp:ScriptManager runat="server" ID="ScriptManager1">
</asp:ScriptManager>
2)
<
telerik:RadScriptManager runat="server" ID="RadScriptManager1">
</telerik:RadScriptManager>
But the result is the same (the above error)
function AddAppointment() { | |
var scheduler = document.getElementById('RadScheduler1'); | |
var newAppt = new Telerik.Web.UI.SchedulerAppointment(); | |
var start = new Date(); | |
var end = new Date(); | |
start.setFullYear(2008, 11, 4); | |
start.setHours(10, 30, 0, 0); | |
end.setFullYear(2008, 11, 4); | |
end.setHours(11, 0, 0, 0); | |
newAppt.set_start(start); | |
newAppt.set_end(end); | |
newAppt.set_subject("Testing Appointment"); | |
scheduler.insertAppointment(newAppt); | |
} |