jquery-ui
jquery-ui copied to clipboard
The official jQuery user interface library.
IE filter property values were updated to strings by https://github.com/jquery/jquery-ui/pull/1939. However, the filter value for the widget-overlay hasn't been updated in the output CSS file (https://github.com/jquery/jquery-ui/blob/1.13.2/dist/themes/base/theme.css#L441). All of the other...
jquery-patch.js: Misleading label and description ("Support version 1.8.x and newer of jQuery core")
[The jquery-patch.js component](https://github.com/jquery/jquery-ui/blob/main/ui/jquery-patch.js) increases backwards compatibility by allowing current jQuery UI versions to be used with jQuery core versions anterior to 3.5 (until 1.8). jQuery core 3.5+ would otherwise be...
I found a bug in the calculation of the formula in the _calculateNewMax function, but there is also a little bug with js like 0.1+0.2=0.30000000000000004 If we use the library...
[The _Reminder: API Redesigns_ section of the _jQuery UI 1.13 Upgrade Guide_](https://jqueryui.com/upgrade-guide/1.13/) contains: > Although the redesigns introduced breaking changes, 1.12 & 1.13 maintains a lot of compatibility with the...
This also switches us to the new Chrome Headless mode. Ref https://developer.chrome.com/articles/new-headless/ Ref https://pptr.dev/#default-runtime-settings
It appears if you open a dialog on a page that's inside a now-visble iFrame, where the iFrame wasn't initially visible (display: none or a parent with display: none), the...
Issue is visible even on examples [page](https://jqueryui.com/datepicker/#buttonbar) - `Today` button is not clickable and does not set datepicker to current date (the one displayed by `showButtonPanel` [showButtonPanel in api](https://api.jqueryui.com/datepicker/#option-showButtonPanel)).
Every widget i'm using from the jquery UI has a .prototype, but not datepicker. I've found this issue by trying to overwrite classes, as per the [guide here](https://learn.jquery.com/jquery-ui/widget-factory/classes-option/). Here's my...
All the samples for each type of Dialog screen here: https://jqueryui.com/dialog The main CSS file is incorrectly linked, resulting in the modal not working correctly, such as not being resizable...
I am currently using datepicker on my site with the following code: ``` $(function(){ $("#attrib-23-0").attr( 'readOnly' , 'true' ); $('#attrib-23-0').datepicker({ dateFormat: 'MM dd, yy', beforeShowDay: function(date){ var string = jQuery.datepicker.formatDate('mm/dd/yy',...