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

Timeline resources vertical formatting issue

5 Answers 77 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Daniel Tharp
Top achievements
Rank 1
Daniel Tharp asked on 19 Apr 2011, 05:58 PM
Please refer to the demo link below and do the following.

http://demos.telerik.com/aspnet-ajax/scheduler/examples/resourceheadertemplates/defaultcs.aspx

Set Grouping direction: Vertical
Select the Timeline View

As you can see, the formatting of the table cells and rows get all screwed up after just 2 resources. I am in currently in firefox. Is there a way to fix this. This has been an issue for a long time with the RadScheduler and I was wondering if it is ever going to be addressed. It is the only thing holding me back from using this control in my application. It seems to be a pretty standard piece of functionality since you can accomplish this horizontally.

5 Answers, 1 is accepted

Sort by
0
Veronica
Telerik team
answered on 22 Apr 2011, 12:56 PM
Hi Daniel Tharp,

Thank you for finding this bug in our demo. We'll do the needful to fix this.

I've added points to your collection for finding the issue.

Greetings,
Veronica Milcheva
the Telerik team

Browse the vast support resources we have to jump start 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
Daniel Tharp
Top achievements
Rank 1
answered on 26 Apr 2011, 05:42 PM
Is there a list I can be added to that will notify me when this issue is fixed or is there a hot fix you can send me so I don't have to find a new control.

thanks
0
Veronica
Telerik team
answered on 29 Apr 2011, 08:42 AM
Hello Daniel Tharp,

I'll contact to notify you as soon as the issue is solved.

Best wishes,
Veronica Milcheva
the Telerik team

Browse the vast support resources we have to jump start 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
MFitzpatrick
Top achievements
Rank 1
answered on 08 Dec 2011, 07:30 PM
Has this issue been addressed? I am running into a similar issue. You can see in the attached image that the resource headers do not line up with their associated appointments.

Thanks

Mike
0
Plamen
Telerik team
answered on 12 Dec 2011, 03:57 PM
Hi Mfitzpatrick,

This bug has not been fixed yet but here is a possible workaround with jQuery that is improving the misalignment and can work for you as a temporary solution:
function pageLoad() {
      var $ = $telerik.$;
      var rsVerticalHeaderTableTD = $(".rsVerticalHeaderTable th");
      var rsAllDayTableTD = $(".rsAllDayTable tr");
      var index = 0;
      rsAllDayTableTD.each(function(a) {
  
          var h = $(this).height()-1;
        
          rsVerticalHeaderTableTD[index].style.cssText ="height:"+h+"px";
          index++;
      });
  }

Hope this will help.

Kind regards,
Plamen Zdravkov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
Tags
Scheduler
Asked by
Daniel Tharp
Top achievements
Rank 1
Answers by
Veronica
Telerik team
Daniel Tharp
Top achievements
Rank 1
MFitzpatrick
Top achievements
Rank 1
Plamen
Telerik team
Share this question
or