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

Scheduler is hidden in Firefox 10.0.2

1 Answer 30 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Matthew
Top achievements
Rank 1
Matthew asked on 29 Feb 2012, 05:51 PM
In my current project the scheduler is bound to an array list and renders fine in Internet Explorer and chrome, however in Firefox it never renders first time. If I am lucky I will see the title bar and may be the days when in month view. Although if I then hit F11 or F12 to bring up Firebug the scheduler does becomes visible in its entirety.


1 Answer, 1 is accepted

Sort by
0
Matthew
Top achievements
Rank 1
answered on 01 Mar 2012, 11:50 AM
I found a solution that worked for me in this situation and that was to get the scheduler to do a client side repaint() call. In my case using jquery pageLoad function that used the $find for the scheduler control and the calling the repaint method whilst using a setTimeout solved my issue.

function pageLoad() {
    setTimeout(function() { $find($("[id $= '_rscPlanner']").get(0).id).repaint(); }, 200);    
}


Hope this helps someone else.
Tags
Scheduler
Asked by
Matthew
Top achievements
Rank 1
Answers by
Matthew
Top achievements
Rank 1
Share this question
or