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

[Solved] Cutting off event name...

4 Answers 160 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
TSCGlobal
Top achievements
Rank 1
TSCGlobal asked on 29 Feb 2008, 05:30 PM
Hello:

I'm hoping someone can help me. I've been grooming the Schedular control to be used to view company events, such as training, and etc. for our clients. Unfortunately, I have noticed that in the month view, the name of the event is cut off, and the only way I can see the full even title is by hovering my mouse over it, which makes it come up as a tooltip. While this may be the standard for MS Outlook, it will not work on my company's site. I need to have the event names fully displayed. Is there a way to do this? I tried doing this using CSS, but could not. If such a thing is possible, can you provide an example?

Thanks.

4 Answers, 1 is accepted

Sort by
0
Darius
Top achievements
Rank 1
answered on 03 Jun 2008, 10:20 PM
I have the same problem. Please provide a solution.
0
Alex Gyoshev
Telerik team
answered on 04 Jun 2008, 12:54 PM
Hi Darius,

If there is enough visible space, it can be done :-)

The solution we came up with is to add the following CSS styles to your page:
div.RadScheduler .rsMonthView .rsApt, 
div.RadScheduler .rsMonthView .rsAptWrap, 
div.RadScheduler .rsMonthView .rsAptInner 
    height:auto
    overflow:visible

If this does not suit your case, however, could you please send us an image to clarify what the desired outcome should look like?

Regards,
Alex
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Darius
Top achievements
Rank 1
answered on 04 Jun 2008, 02:54 PM

And I was able to achieve it with this:

    <style type="text/css">  

       .rsApt     

        {     

            position: static !important;     

        }     

        .rsMonthView .rsWrap     

        {     

            overflow: visible !important;     

            height: auto !important;     

        }     

    </style>  

Now, 2 questions. Since my page is a content page, can I:

1.      Apply this style only to the content page, and avoid putting the css in the master page’s head element?

2.      Do this from code?

0
Alex Gyoshev
Telerik team
answered on 04 Jun 2008, 03:24 PM
Hi Darius,

Adding the <style> block outside the document <head> is invalid markup, yet it will work. Standards are guidelines, after all, and everyone can break the rules :-) You could also link to an external stylesheet, but if it contains only these lines it would be rather a performance issue.

Unfortunately, there is no effective way to do this from code.

Greetings,
Alex
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Scheduler
Asked by
TSCGlobal
Top achievements
Rank 1
Answers by
Darius
Top achievements
Rank 1
Alex Gyoshev
Telerik team
Share this question
or