jQWidgets Forums
Forum Replies Created
-
Author
-
February 19, 2019 at 2:48 pm in reply to: Date rangeselection is offsetted by one day Date rangeselection is offsetted by one day #104066
The issue may be discussed but with only a hint of a solution given in your “Set TimeZone in to jqwidgets datetimeinput” thread. Yes the browser handles time differently, yet there should be some way to provide the date back to the widget without us having to change the value so that it shows up correctly like a property in the widget that says local time or UTC. That would make this control a better control.
February 18, 2019 at 7:51 pm in reply to: Set TimeZone in to jqwidgets datetimeinput Set TimeZone in to jqwidgets datetimeinput #104041So I understand that you don’t see it because you are on the East side of UTC or a positive timezone offset. So when timezones interact to your dates, the date won’t be offset unless you are working in the late evening. The problem is a time truncation occurring causing the date to be one day earlier. I don’t see a way for us (your clients) to offset the time stamp every time we try to use the date picker by our timezone offset or rather the timezone offset for each user that will see the control on our pages.
Does anyone have a good solution to this? It is very frustrating to find a set of controls that say they work and don’t.
February 8, 2018 at 6:25 pm in reply to: Uncaught SecurityError: Blocked a frame with origin Uncaught SecurityError: Blocked a frame with origin #98633Actually I meant across protocols not domains.
Actual message:
“Blocked a frame with origin “http://” from accessing a frame with origin “file://”. The frame requesting access has a protocol of “http”, the frame being accessed has a protocol of “file”. Protocols must match. applyWidget jqxcore.jsFebruary 8, 2018 at 5:50 pm in reply to: Uncaught SecurityError: Blocked a frame with origin Uncaught SecurityError: Blocked a frame with origin #98632instance.createInstance(args);
Throws the error in $.jqx.applyWidget jqxcore.js
What is happening in there to be calling CORS stuff? I am running all kinds of JavaScript and accessing images other javascript files and everything inside of an iframe that houses the Layout Widget and yet this code throws the error. Everything seems to come through and looks OK but the code throws the error.
What does createInstance do that is trying to make a request across domains?
July 27, 2017 at 8:37 pm in reply to: Button with imgSrc and bind click needs to trigger Button with imgSrc and bind click needs to trigger #95183Note that even in the demo in jqxknockout/combobox.htm simply add in an image to the add button makes the button stop working.
<button id="addButton" data-bind="jqxButton: { imgSrc:'../../images/add.png'}" type="submit"></button>
or the remove button:
<button id="removeButton" data-bind="click: removeItem, jqxButton: {imgSrc:'../../images/add.png'}"> Remove</button>
The trigger starts working again as soon as you remove the imgSrc.
October 12, 2016 at 2:40 pm in reply to: Minimize after construction Minimize after construction #88103To help others: in order to close the pop-out menu when minimized I used trigger(“click”) on the icon like
$(".jqx-menu-minimized-button").trigger("click");
I still have not been able to find out a way to have
keyboardNavigation
to work. This is definitely a bug in the code. I have to have keyboard navigation in order for this to be a viable solution.October 5, 2016 at 2:27 am in reply to: Minimize after construction Minimize after construction #87909It appears to be related to the keyboardNavigation option. If I take this out then the minimized menu itemclick’s work, though I still can’t close the menu programmatically. And I need the keyboardNavigation.
October 5, 2016 at 12:08 am in reply to: Minimize after construction Minimize after construction #87908As I mentioned previously that if you take any example of menu and ask it to minimize and have keyboardNavigation, jqxMenu(“minimize”) it will no longer trigger itemclick or autoclose or act like it does when it is non-minimized. Example:
Fiddle ExampleI would like it to close on click as well. Can we close a minimized menu? I have tried jqxMenu(“close”) with no success. Only upon clicking on the minified icon will it close. I haven’t yet tracked down how that works so that I can call it too.
October 3, 2016 at 4:56 pm in reply to: Minimize after construction Minimize after construction #87877itemclick only triggers on the main menu toggle. Further, the menu doesn’t reload in the same div as before minimizing, thus causing trouble with the predefined click handlers.
-
AuthorPosts