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

TimelineView GroupBy column width

4 Answers 138 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Steve
Top achievements
Rank 1
Steve asked on 18 Aug 2008, 04:12 PM
I am grouping vertically in the TimelineView so that I have a List of employees on the left hand side. Some of the Employee names are too long for the default column width. How do I add nowrap to this column and make sure all of the Timeslot columns line up?

cheers,

Steve

4 Answers, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 19 Aug 2008, 12:23 PM
Hello Steve,

You can increase the widht of the resourse cells and allign the text with the following css classes:

.rsHoursContent  
    {  
        text-align:left !important;  
        width150px !important;  
    }  
    .rsHoursWrapper  
    {  
        width:150px !important;  
    } 


Best wishes,
Peter
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Steve
Top achievements
Rank 1
answered on 19 Aug 2008, 04:04 PM
Thanks Peter, I've used .rsHoursContent and that stops the wrapping in the Resource column.

But how do I make it line up with the cell in the HeaderDate row above it? In other words, I need to apply the same fix to the left hand cell in the header row for the TimelineView.
0
Accepted
Peter
Telerik team
answered on 20 Aug 2008, 11:37 AM
Hello Steve,

Please, include the following css style:

 .rsColumnHeaderSpacerCell div  
    {         
        width: 300px !important;  
    }  
 


All the best,
Peter
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Steve
Top achievements
Rank 1
answered on 20 Aug 2008, 12:45 PM
Peter, this worked perfectly, thanks.
Tags
Scheduler
Asked by
Steve
Top achievements
Rank 1
Answers by
Peter
Telerik team
Steve
Top achievements
Rank 1
Share this question
or