jQWidgets Forums
Forum Replies Created
-
Author
-
December 6, 2023 at 2:44 pm in reply to: jqxScheduler doesn't work on tablet jqxScheduler doesn't work on tablet #134044
Hi,
Anybody that can help me please?
October 20, 2023 at 8:00 am in reply to: jqxScheduler doesn't work on tablet jqxScheduler doesn't work on tablet #133803Hi,
You need to change it to HTTP for it to work.
October 19, 2023 at 11:33 am in reply to: jqxScheduler doesn't work on tablet jqxScheduler doesn't work on tablet #133791Hi,
Did you go to http://testeon.aboservice.be and not https://?
October 18, 2023 at 11:51 am in reply to: jqxScheduler doesn't work on tablet jqxScheduler doesn't work on tablet #133774Hi,
I use the NoxPlayer 7.0.5.8 (Samsung SM-G988N Android version 7.1.2).
You can test it at http://testeon.aboservice.be with the login en and pasword en01. If you go to the topmenu you can go to agenda > agenda. It will show but when you click on day or week or month it doesn’t change the view.
If you click on agenda > agenda test 2 you see it doesn’t work.Thanks in advance.
June 13, 2019 at 11:42 am in reply to: can i change start time in the day view of scheduler? can i change start time in the day view of scheduler? #105672Can you give me an example of this but with the timelineview? I changed your example to the timelineview but it doesn’t start at the starthour. Or doesn’t this works with the timelineview?
June 11, 2019 at 12:45 pm in reply to: can i change start time in the day view of scheduler? can i change start time in the day view of scheduler? #105619I would like that if you open the scheduler or timeline that it starts from the worktime. Now when I open it, it starts from midnight instead of 8.
We use a const for the start and end time:
const WORKING_START_HOUR = “8”;
const WORKING_END_HOUR = “18”;Then in the views we say what the fromHour and toHour is.
views: any[] = [
{ type: “dayView”,
text: “Day”,
workTime:{ fromDayOfWeek: 1, toDayOfWeek: 5, fromHour: WORKING_START_HOUR, toHour: WORKING_END_HOUR }
},
{ type: ‘weekView’,
text: “Week”,
workTime:{ fromDayOfWeek: 1, toDayOfWeek: 5, fromHour: WORKING_START_HOUR, toHour: WORKING_END_HOUR }
},
{ type: “monthView”, text: “Month” },
{ type: “agendaView”, text: “Agenda” }June 6, 2019 at 3:16 pm in reply to: can i change start time in the day view of scheduler? can i change start time in the day view of scheduler? #105543Hi,
In the demo that you give here, can it be that the workTime doesn’t work? Because if you open the demo you see the time from 12 AM except of 7 like you put in the fromHour. I have a similar problem, do you know the cause of this?
Best Regards,
Fran Andries -
AuthorPosts