Michael Geary schrieb:
> You are calling BindTimeSelectors before the AJAX load is complete.
> 
> Which AJAX load is the one that BindTimeSelectors depends on? Assuming it is
> the second one, you could code it like this:
> 
>  $("#daysheader").load( "ajax/weekview_headers.aspx?fromdate=" +
> calendarDay.Date );
>  $("#days").load(
>      "ajax/weekview_appointments.aspx?fromdate=" + calendarDay.Date,
>      BindTimeSelectors()
>  );

I think it should read:

$("#days").load(
     "ajax/weekview_appointments.aspx?fromdate=" + calendarDay.Date,
     BindTimeSelectors
);


-- Klaus

_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to