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

How do I increase the size of the appointment Description text box

1 Answer 75 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Erik
Top achievements
Rank 1
Erik asked on 02 Apr 2012, 08:50 PM
Hi,

I need to increase the size of the description text box in the appointment  for rad scheduler. Any ideas on how to do this without creating from scratch insert and edit custom templates?

Thanks,

Erik

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 03 Apr 2012, 06:11 AM
Hi Erik,

Try overriding the default CSS using "!important" to increase the size of the appointment description textbox.

CSS:
<style type="text/css">
   .RadScheduler .rsAptEditFormWrapper .rsAptEditTextareaWrapper
     {
        height:200px !important;
     }
   .RadScheduler .rsAptEditSizingWrapper
     {
        width: 800px !important;
     }
</style>

Thanks,
Princy.
Tags
Scheduler
Asked by
Erik
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or