I make a linkbutton visible when appointment form is created:
| protected void RadScheduler1_AppointmentCreated(object sender, AppointmentCreatedEventArgs e) |
| { |
| LinkButton1.visible = true; |
| } |
I want to hide the LinkButton1 when the insert or update is finished and RadScheduler1 returns to calendar view. is this possible? thanks in advance