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

Remove arrow button on appointments?

9 Answers 214 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Jerome
Top achievements
Rank 1
Jerome asked on 02 Sep 2008, 01:19 AM
Is it possible to remove the arrow button on the appointments in timeline view if the appointments is crossing the boundary of the timeline?

Thanks

9 Answers, 1 is accepted

Sort by
0
Accepted
Peter
Telerik team
answered on 02 Sep 2008, 09:55 AM
Hi Jerome,

Yes, this is possible. Please, try the following css selector which removes the arrows just for the Time line view:

.rsTimelineTable .rsArrowLeft, .rsTimelineTable .rsArrowRight  
{  
    displaynone !important;     


Kind regards,
Peter
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Jerome
Top achievements
Rank 1
answered on 03 Sep 2008, 01:00 AM
Hi Peter,

Thank you for your reply. However, this approach only removes the image of the button, the cursor still change to a pointer type when hovering over the appointments which are crossing the boundary. In my application, I am trying to create a timeline view scheduler that only shows the selected period and it should not have any function which allows the user to change to period. Do you think it is possible? Thank you very much.

Regards,
Jerome
0
Jerome
Top achievements
Rank 1
answered on 03 Sep 2008, 01:00 AM
Hi Peter,

Thank you for your reply. However, this approach only removes the image of the button, the cursor still change to a pointer type when hovering over the appointments which are crossing the boundary. In my application, I am trying to create a timeline view scheduler that only shows the selected period and it should not have any function which allows the user to change to period. Do you think it is possible? Thank you very much.

Regards,
Jerome
0
Peter
Telerik team
answered on 04 Sep 2008, 11:13 AM
Hello Jerome,

This is strange. With the css selectors I suggested, you should be able to remove the appointment arrows and disable navigation through them this way. Also, there shouldn't be any cursor change when you hover the area where the arrows were before applying the suggested css styles.

If need to disable the other means for navigation, please set the following properties:

EnableDatePicker="false"
ShowNavigationPane="false"



Regards,
Peter
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Jerome
Top achievements
Rank 1
answered on 05 Sep 2008, 12:50 AM
Hi Peter,

It's working now, thank you peter.

Regards,
Jerome
0
Archan
Top achievements
Rank 1
answered on 18 Sep 2008, 08:09 AM
Hi peter

is there any way to remove the arrow buttons from the Week view..
I want to remove the arrows from the Weekly view also..

Thanks
Archan
0
Peter
Telerik team
answered on 18 Sep 2008, 08:27 AM
Hello Archan,

You can hide the previous and next arrows with the following css rule:


 .rsHeader p   
    {  
        backgroundtransparent !important;  
    } 

However, this way the arrows will be removed for all views of RadScheduler. Is this what you need, or just for Week View?

Regards,
Peter
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Archan
Top achievements
Rank 1
answered on 18 Sep 2008, 11:53 AM
Hi Peter

Thats was good.
But if I want it only for Week view ?

and one more thing is there any way to keep the arrow there but not have the hand thing there ?

Thanks
Archan
0
Peter
Telerik team
answered on 19 Sep 2008, 07:37 AM
Hi Archan,

RadScheduler does not render any special css class for the navigation arrows for the various view types. You can not easily hide the arrows just for Week View.

As for the other question, please try the following:

 .rsPrevDay, .rsNextDay  
    {  
        displaynone !important;  
    } 



Sincerely yours,
Peter
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Scheduler
Asked by
Jerome
Top achievements
Rank 1
Answers by
Peter
Telerik team
Jerome
Top achievements
Rank 1
Archan
Top achievements
Rank 1
Share this question
or