9 Answers, 1 is accepted
0
Hello Erdem,
Plamen Zdravkov
the Telerik team
You can add the word "reserved" if it is not part of the subject already in the AppointmentInsert and AppointmentUpdate events.
Hope this will help you.
Plamen Zdravkov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0

Erdem
Top achievements
Rank 1
answered on 01 May 2012, 10:54 PM
How can add events ? what is code ? Uploaded picture will look like.I could not do it.
0

Erdem
Top achievements
Rank 1
answered on 02 May 2012, 09:00 PM
Anyone help me ?
0

Erdem
Top achievements
Rank 1
answered on 02 May 2012, 09:55 PM
As shown in the figure
After you type the word then appearing "RESERVED"
After you type the word then appearing "RESERVED"
0
Hello Erdem,
Plamen Zdravkov
the Telerik team
I am attaching a sample web page where is shown how to achieve similar functionality by changing the subject of the appointment at AppointmentInsert and AppointmentUpdate events.
Hope this will be helpful.
Plamen Zdravkov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0

Erdem
Top achievements
Rank 1
answered on 03 May 2012, 12:49 PM
Thank you Plamen,
I added this and seems Reserved but it is also reserved in the database as a record. I want to seem Reserved but datebase record real word . How can do this ??
protected void RadScheduler1_AppointmentInsert(object sender, AppointmentInsertEventArgs e)
{
e.Appointment.Subject = "Reserved";
}
I added this and seems Reserved but it is also reserved in the database as a record. I want to seem Reserved but datebase record real word . How can do this ??
protected void RadScheduler1_AppointmentInsert(object sender, AppointmentInsertEventArgs e)
{
e.Appointment.Subject = "Reserved";
}
0
Hello Erdem,
Hope this will help you.
Greetings,
Plamen Zdravkov
the Telerik team
If you don't want to change the DataBase instead of using the server insert and update events you can just change the text in the appointments' divs with jQuery as in the code below:
<
script
type
=
"text/javascript"
>
function pageLoad() {
$telerik.$(".rsAptContent").text("Reserved");
}
</
script
>
Hope this will help you.
Greetings,
Plamen Zdravkov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0

Erdem
Top achievements
Rank 1
answered on 03 May 2012, 04:33 PM
Hello Plamen,
<script type="text/javascript">
function pageLoad() {
$telerik.$(".rsAptContent").text("Reserved");
}
</script>
I could not find where to 'change. Would you please send altered state?
<script type="text/javascript">
function pageLoad() {
$telerik.$(".rsAptContent").text("Reserved");
}
</script>
I could not find where to 'change. Would you please send altered state?
0

Erdem
Top achievements
Rank 1
answered on 03 May 2012, 04:48 PM
Hello Plamen,
Thank you very much Plamen.I did it.
Thank you Telerik Team
Thank you very much Plamen.I did it.
Thank you Telerik Team