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

Delete confirmation dialog is displayed too low

8 Answers 199 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Monsignor
Top achievements
Rank 2
Monsignor asked on 09 Nov 2010, 11:43 AM
Hello,

I have a scheduler and it has the following properties:

<telerik:RadScheduler runat="server" ID="Scheduler"
GroupBy="Date,JobTitle"
GroupingDirection="Vertical"
DataKeyField="ID"         
DataSubjectField="Subject"
DataStartField="Start"
DataEndField="End"
SelectedView="MultiDayView"
ShowAllDayRow="false"           
ShowHeader="false"
ShowFooter="false"
ShowFullTime="true"
MinutesPerRow="60"
MultiDayView-ColumnHeaderDateFormat="dddd"
StartInsertingInAdvancedForm="true"
StartEditingInAdvancedForm="true"
OverflowBehavior="Expand"

My scheduler displays 8 days at a time, so it is quite long (OverflowBehavior="Expand"). When I press delete button of appointment, the confirmation dialog appears. And it appears at the center of scheduler, so user have to scroll the page down. This is very confusing and I need your help to find a workaround solution...

8 Answers, 1 is accepted

Sort by
0
Jayesh Goyani
Top achievements
Rank 2
answered on 09 Nov 2010, 01:38 PM
i also face same problem.

can i change position of delete dialog box.
0
Peter
Telerik team
answered on 11 Nov 2010, 02:42 PM
Hello jayesh,

You can control the positioning of the confirm dialog with the following css selector:

.rsModalDialog 
    
        top: 60px !important;     
    }

Please, let us know if this helps you achieve your goal.

Regards,
Peter
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Monsignor
Top achievements
Rank 2
answered on 12 Nov 2010, 01:45 PM
Hello Peter,

But how to make the dialog to display at the postition of appointment that is being deleted?
0
Peter
Telerik team
answered on 17 Nov 2010, 02:57 PM
Hi Monsignor,

I am not sure how this can be achieved. If you find a solution, please post it here for reference for the community.

Greetings,
Peter
the Telerik team
Browse the vast support resources we have to jumpstart your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
0
Monsignor
Top achievements
Rank 2
answered on 18 Nov 2010, 09:05 AM
Can the telerik team implement this behaviour?

I wanted to make it manually, but there is no "DeleteDialogIsShown" event..
0
Raghav
Top achievements
Rank 1
answered on 18 Nov 2010, 06:12 PM
Yes, setting the CSS does the trick!
 I wonder if there is way to disable delete dialog in asp.net ajax RADScheduler ?

Regards
Raghav
0
Peter
Telerik team
answered on 23 Nov 2010, 03:12 PM
Hello Raghav,

Yes, you can set DisplayDeleteConfirmation="false" for RadScheduler.

Regards,
Peter
the Telerik team
Browse the vast support resources we have to jumpstart your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
0
Waqas
Top achievements
Rank 1
answered on 20 Jun 2012, 07:23 AM
you can achive using this css code.

.RadScheduler .rsModalWrapper .rsModalDialog {
            position: fixed !important; 
            margin:-86px 0 0 -197px !important;
            top: 50% !important;
            left: 50% !important;
            z-index: 100 !important;
        }
Tags
Scheduler
Asked by
Monsignor
Top achievements
Rank 2
Answers by
Jayesh Goyani
Top achievements
Rank 2
Peter
Telerik team
Monsignor
Top achievements
Rank 2
Raghav
Top achievements
Rank 1
Waqas
Top achievements
Rank 1
Share this question
or