Page 1 of 1

Incorrect display issues

PostPosted: 19 Jul 2016 08:05
by zsleo
2016-07-19 16_41_26-Program Manager.png


2016-07-19 16_44_24-Program Manager.png


IW 14.0.60
CGD 3.0.0.19

I have some stange behaviour with Scheuler.

The Image 1 shows the "Scheduler.JQSchedulerOptions.IntervalTime := 30" for both schedulers - both schedulers display and operate as expected

The Image 2 shows the left Scheduler with "Scheduler.JQSchedulerOptions.IntervalTime := 30" and the other Scheduler with "Scheduler.JQSchedulerOptions.IntervalTime := 15"

Both images have exactly the same datasets selected

As you can see the time right hand Scheduler of the Image 2 is diaplaying the time axis with incorrect values and NOT all the Scheduler slots have time displayed.

Is there something I am doing incorrectly or misunderstanding. I need help to fix this issue.

I have tries other Scheduler.JQSchedulerOptions.IntervalTime values and they display very similar issues...

TIA

Re: Incorrect display issues

PostPosted: 19 Jul 2016 10:31
by Alexander Bulei
Hi,

Yes, the scheduler have some issues with intervalTime, and we don't know how to fix it yet...
The strange behaviors begin on intervalTime <> 30 ....
We are still trying to solve it, but without success atm..

Best Regards.

Re: Incorrect display issues

PostPosted: 19 Jul 2016 14:30
by zsleo
:cry:
I will keep watching for the fix...

Re: Incorrect display issues

PostPosted: 21 Jul 2016 17:30
by assapan
Hi,
I have done a modification in the Javascript for that and so far it seems to work ! but i am not enough strong in javascript to warranty it works in any case.
Also the template divide the IntervalTime in 2 so in case of 30 minutes the half in 15 minutes but in case of 15 minutes the half is 7.5 minutes. :mrgreen:

My modifications in BuildDayScollEventContainer procedure replace
Code: Select all
            for (var i = (option.startHour * 2); i < (option.endHour * 2); i++) {


by
Code: Select all
           var divn = 60 / (option.intervalTime * 2);
           for (var i = (option.startHour * divn); i < (option.endHour * divn); i++) {

Image

Re: Incorrect display issues

PostPosted: 21 Jul 2016 21:56
by zsleo
Thanks for your response.

Unfortunately I do not have the source code.

Re: Incorrect display issues

PostPosted: 21 Jul 2016 22:08
by assapan
you don't need source it's in Javascript file

Re: Incorrect display issues

PostPosted: 03 Aug 2016 11:25
by Alexander Bulei
Hi guys,

We have fixed the problem with interval in latest beta build.

Thanks all you ;)

Best Regards,

Re: Incorrect display issues

PostPosted: 03 Aug 2016 11:28
by assapan
I already tried it and it works fine .
Thanks

Re: Incorrect display issues

PostPosted: 03 Aug 2016 19:45
by zsleo
I also tried with the demo apps and it looks good

Re: Incorrect display issues

PostPosted: 04 Aug 2016 09:28
by Alexander Bulei
Thanks for feedback guys ;)

Best Regards.