Page 1 of 1

Month view: more day items hyperlink

PostPosted: 13 Mar 2019 05:51
by zsleo
I have an app that uses multiple schedulers in one frame. When I select Month view and click on the more items for any day, the popup does not display.

Attached is the HTML file for the page and also attached is the Chrome debugger generated error file.

Help please....

TIA.

P.S. May me worth noting that I am creating the schedulers at run-time.

Code: Select all
    lv_Scheduler := TIWCGJQScheduler.Create(Self);
    { After Create }
    lv_Scheduler.EventFrame := MyFrame;
    lv_Scheduler.JQSchedulerOptions.AutoLoad := True;
    lv_Scheduler.JQSchedulerOptions.ShowDay := Date;

    lv_Scheduler.Parent := lv_Panel;
    lv_Scheduler.Name := 'schdlr' + lv_Str;
    lv_Scheduler.Align := alClient;
    lv_Scheduler.OnGetData := SchedulerApptGetData;
    lv_Scheduler.Font.Enabled := True;
    lv_Scheduler.StyleRenderOptions.RenderFont := True;
    // lv_Scheduler.LoadHidden := False;
    lv_Scheduler.JQSchedulerOptions.CacheEvents := False;
    lv_Scheduler.JQSchedulerOptions.AutoLoad := False;
    lv_Scheduler.JQSchedulerOptions.ReadOnly := True;
    lv_Scheduler.JQSchedulerOptions.ShowEditBtnOnNewEvent := True;
    lv_Scheduler.EventContextMenu := iwcgjqcntxtmn1;
    lv_Scheduler.JQSchedulerOptions.OnViewChange := nil;
    lv_Scheduler.JQSchedulerOptions.View := TIWCGJQSchedulerView(cboViews.SelectedIndex);
    lv_Scheduler.JQSchedulerLocale.DateFormat.DayWeekViewDateFormat := 'ddd dd-mm-yy';
    lv_Scheduler.JQSchedulerLocale.DateFormat.MonthViewDateFormat := 'dd-mm';
    lv_Scheduler.JQSchedulerLocale.DateFormat.WorkingFormat := 'dd-mm-yy';
    lv_Scheduler.ZIndex := 1000;                                           

    { init scheduler }
    lv_Scheduler.OnInitSchedulerFrame := SchedulerInitAppointmentFrame;
    { Frame to Event }
    lv_Scheduler.OnSchedulerFrameControlsToEvent := SchedulerSchedulerFrameControlsToEvent;
    lv_Scheduler.OnEventToSchedulerFrameControls := SchedulerEventToSchedulerFrameControls;

    if gv_ColorCount = 0 then
    begin
      qryTreatments.Close;
      qryTreatments.Open;
    end;
    lv_Scheduler.JQSchedulerOptions.ColorArray := gv_SchedulerColourArray;


Error.zip


Page.zip

Re: Month view: more day items hyperlink

PostPosted: 21 Mar 2019 18:35
by zsleo
.... bump
It is becoming VERY difficult to get a response these days. We rely on your support to get our work done :roll:

Re: Month view: more day items hyperlink

PostPosted: 27 Mar 2019 10:25
by Alexander Bulei
Hi zsleo,

I'm sorry for delay on replies, I had some health issues and was recovering...

Anyway, for the schedule issue/problem, I need the simple testcase demo.
Can you send it? TIA

Best Regards.

Re: Month view: more day items hyperlink

PostPosted: 28 Mar 2019 08:34
by zsleo
Alexander,

I hope you have overcome the health issues and wish you all the best in your recovery.

I will be away for about 10 days and will prepare a small app if I get some time while I am away, otherwise I will do it on my return

TIA