search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

Slots in Chrome browser are display as empty boxes.

Asked by Anonymous
14 years ago.
Hi, I have been using daypilot lite in project with great success, however I noticed when I view one of my aspx pages in Google chrome the calendar entries are displayed in the correct time slot say 8am to 10am but the contents of the slot is empty. Both IE and FF display this page correctly. Any ideas? Cheers. Mike
Comment posted by Bbq
13 years ago.
Oh, multi-browser support. The Nightmare of every web-developper.
Answer posted by Steve P
12 years ago.

I used this to fix this problem

TimeRangeSelectedJavaScript="FixWidth();" VisibleRangeChangedJavaScript="FixWidth();"

function FixWidth(){
document.getElementById('ctl00_ContentPlaceHolder1_DayPilotScheduler1').childNodes[1].childNodes[0].childNodes[0].style.width = '100%';
}
$(document).ready(function(){
document.getElementById('ctl00_ContentPlaceHolder1_DayPilotScheduler1').childNodes[1].childNodes[0].childNodes[0].style.width = '100%';
});

Sp

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.