Issue 1827: isRTL
Status:  Done
Owner: ----
Closed:  Aug 2013
Reported by RSAOS2H...@gmail.com, May 8, 2013
When using isRTL : true 
shouldn't the week and day view - hours column - display on the right side ? 
i'm using it like that 
$(document).ready(function () {
    flag = !1;
    $("#Xcalendar").fullCalendar({
        theme: !0,
        isRTL : true,
        header: { left: "next,prev today", center: "title", right: "month,agendaWeek,agendaDay" },
Aug 24, 2013
Project Member #1 adamrs...@gmail.com
when you have isRTL set to true, and you explicitly set a "header" configuration, that header configuration will literally be followed, and will not flip left/right, so you'll have to account for this when you are writing that configuration
Status: Done