jQWidgets Forums
Forum Replies Created
-
Author
-
April 7, 2023 at 4:56 pm in reply to: Scheduler is not working on Firefox Scheduler is not working on Firefox #132804
Thank you. This is json data, so I am not able to change to JS Dates, but tried along the same lines and was able to make it work by adding format: “yyyy-MM-dd hh:mm tt” to dataFields start and end. My server always returns me dates in this format – yyyy-MM-dd hh:mm a.
Here is the fixed version (with string dates): https://jseditor.io/?key=0f524a91d49d11ed8c8fc4377264e2bc-ver-6Thanks,
RoshiniApril 6, 2023 at 7:24 pm in reply to: Scheduler is not working on Firefox Scheduler is not working on Firefox #132797I edited the example above to make the code simpler. Same issue though.
Never mind.
Works after I changed format to “yyyy-MM-dd HH:mm:ss tt”July 20, 2018 at 2:45 am in reply to: Unable to switch to Today's date on scheduler using the calendar widget Unable to switch to Today's date on scheduler using the calendar widget #101083Ohh great. I can use the fiddle to ask my real question!
When you run first time, if u open the calendar and click on “Today” link, nothing happens. This is similar to my initial issue (above) where I clicked the highlighted date (current date), but here I was using the “Today” link.
After you pick a different date and it switches, thereafter if I use the “Today” link, it works fine. But if you don’t switch to another date first, then “Today” link does not work.July 11, 2018 at 5:26 pm in reply to: Unable to switch to Today's date on scheduler using the calendar widget Unable to switch to Today's date on scheduler using the calendar widget #100963Hi,
I had a question if something was changed with the “Today” and “clear” links on the calendar widget. Were they dropped from newer versions? I don’t see on https://jseditor.io/?key=d26d4b6741b011e8b3a100224d6bfcd5. But I have it in the 4.2.1 version we are using.
Thanks,
RoshiniJune 12, 2018 at 3:27 pm in reply to: Legend does not wrap properly when many resources are added Legend does not wrap properly when many resources are added #100570I added overflow-y: scroll instead, thx!
May 4, 2018 at 7:01 pm in reply to: Unable to switch to Today's date on scheduler using the calendar widget Unable to switch to Today's date on scheduler using the calendar widget #100082It was not my example, it is yours.. And the date is set correctly as “date : new $.jqx.date(2015, 11, 23)”.
I have updated your example. https://jseditor.io/?key=0bf3cf994fcd11e89e5100224d6bfcd5
Made only 1 change:
1. removed ensureAppointmentVisible from ready function. Because what’s the point of testing this if it’s already on the current week..You can see the issue now. Run it and try to click on the highlighted date i.e. 5/4/2018 as of the time I’m writing this. It does NOT switch to the current week. Click on any other date, it will switch correctly.
Thanks,
RoshiniMay 2, 2018 at 9:53 pm in reply to: Unable to switch to Today's date on scheduler using the calendar widget Unable to switch to Today's date on scheduler using the calendar widget #100026No, if you go to that link, today’s date is not selected already. It is on the week “20 November 2016 – 27 November 2016”. I want to switch to Today’s date 02 May 2018 (the date with the square around it). If I click on it, nothing happens. Now, click on 1 day before/after the date date with square on it (01 May 2018 for eg). It will switch and you see week of “29 April 2018 – 06 May 2018”.
Hope it is more clear now.April 25, 2018 at 11:11 pm in reply to: Unable to switch to Today's date on scheduler using the calendar widget Unable to switch to Today's date on scheduler using the calendar widget #99905April 25, 2018 at 7:18 pm in reply to: JSON vs Array (different behavior) JSON vs Array (different behavior) #99901Ok, ty.
April 25, 2018 at 7:18 pm in reply to: Legend turning on/off captured? Legend turning on/off captured? #99900Perfect, thank you.
Updated example (for anyone looking): https://jseditor.io/?key=a49d72e841be11e8b3a100224d6bfcd5-ver-2April 17, 2018 at 5:08 am in reply to: Using readOnly, resizable, draggable for appointments Using readOnly, resizable, draggable for appointments #99743I was able to do this during initial binding.
Updated the example, if anyone is looking for one: https://jseditor.io/?key=39c5ba0241fd11e89e5100224d6bfcd5April 16, 2018 at 5:14 am in reply to: JSON vs Array (different behavior) JSON vs Array (different behavior) #99721I just converted to array and used with array datatype.
But this still looks like a bug to me.April 16, 2018 at 5:11 am in reply to: How to use getSelection with cellClick accurately? How to use getSelection with cellClick accurately? #99720I just used regular JS mouseup.. and it works!
$(“#scheduler”).on(“mouseup”, function (event) {
April 12, 2018 at 11:47 pm in reply to: How to use getSelection with cellClick accurately? How to use getSelection with cellClick accurately? #99695Works perfectly if I use a button and bind with that, rather than the cellClick.
$(“#button”).on(‘click’, function (event) {But I need on mouse up event, after selecting the cells.
-
AuthorPosts