This is a migrated thread and some comments may be shown as answers.

User Control for Scheduling a meeting

3 Answers 113 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Vinoth K
Top achievements
Rank 1
Vinoth K asked on 19 Apr 2010, 08:35 AM
Hi,

I am new to RADScheduling, infact new to use scheduler control.
I have a requirement that a user can schedule a meeting.

My requirements.
1) On clicking Schedule a Meeting button in a form opens the Scheduler page as a modal popup.
For this, I am in need of using a user control to show the Schedule a meeting popup.
2) On clicking on submit after entering all required fields, the RADScheduler will be displayed.
3) The user can edit or delete the scheduled meeting.
4) On editing, edit a schedule popup needs to be opened as Modal popup.
5) On clicking update, the same needs to be reflected in the scheduler.

Has anyone experienced same kind of scenario. If yes, Kindly suggest a solution.
How can I show a user control or other page when scheduling and editing a schedule?

Thanks in Advance,

Regards,
Vinoth.K

3 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 19 Apr 2010, 12:17 PM
Hi Vinoth.K,

Initially hide the RadScheduler by setting the Visible property to "false". Then in the button click event show the RadScheduler and open the AdvancedInsertForm as shown below.

CS:
 
    RadScheduler1.Visible = true
    RadScheduler1.ShowAdvancedInsertForm(DateTime.Now); 

The following demo shows how to customize the advanced template using the supplied user controls.
Scheduler / Advanced Templates

Also go through the following documentation:
Customize the Advanced Form Template

Regards,
Princy.
0
Vinoth K
Top achievements
Rank 1
answered on 21 Apr 2010, 10:47 AM
Hi,
Thanks for the reply.

I am explaining my requirement in detail.
1) Please refer the screenshot for UI.
2) On clicking the Schedule meeting button that is outside the scheduler, a modal popup will be shown. On submitting, the data's entered will get saved in database and the scheduler will be populated again.
3) There should be Delete link button available within each and every schedule. (How can I achieve this?)
4) The Edit schedule option should be available inside a tooltip.
5) Double click needs to be disabled for inserting and editing a schedule. But Drag and Drop should be available.

Now I did scheduling using tooltip modal and its working fine.
But I need to know how can i show Delete option within the schedule as a link button.

Kindly reply immediately as this is a important and critical one.
Its URGENT.

Thanks in Advance,
Vinoth.K
0
Vinoth K
Top achievements
Rank 1
answered on 29 Apr 2010, 12:37 PM
Hi All,

I did the above said points by myself after some struggle.

But I am having another requirement as follow.

The scheduler needs to send a reminder mail before the 5 minutes of the scheduled meeting.
Is it possible to do so? Is there any builtin functions available?

Kindly reply.

Regards,
Vinoth.K
Tags
Scheduler
Asked by
Vinoth K
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Vinoth K
Top achievements
Rank 1
Share this question
or