jquery-ui
jquery-ui copied to clipboard
The official jQuery user interface library.
Trying to show tooltip for an input field on focus. position() method positions the tooltip(position: absolute) partially covering the target input field at the first time. my: left at: right...
For Datepicker, when a date is selected and the associated input's value is updated, the "change" event is fired, but the ["input" event](url) is not. I assume this is because...
The npm package 'jquery-ui' includes the directory `external/jquery/` (among others) in addition to the regular package dependency on jquery. Is there a reason for that? Dropping the jquery copies would...
will assign body element with **overflow-x: hidden** style property. After applying the property will not be able to drag and drop the sortable element outside the display area since the...
Hi - Wanted to report a new issue found with the autocomplete control. When an item is selected on Android with FireFox version 99 where the virtual keyboard is used...
There is a huge performance issue in the `sortable` widget which started in version (`1.12.1`) and is still existing in *current* version `1.13.1`, when used with large lists. There's already...
now the height is set by options just a simple fix
I've got a very specific bug that only happens when I have a datepicker in a position: fixed element and the html font-size is not set to 12px and the...
Right now, the bootstrap modal dialogs use a z-index of 1055, so the autocomplete list shows behind the dialog. https://github.com/twbs/bootstrap/blob/a9b34450601b017b27cacd9ff750aa9c12aac82c/scss/_variables.scss#L1042 This change will put the z-index that will work with...
Example: ``` $('#date1').datepicker(); var today = new Date(2022, 2 - 1, 23); var event_start_date = new Date(); event_start_date.setDate(today.getDate() + 21); $('#date1').datepicker().datepicker('setDate', event_start_date); var event_start_date_min = new Date(); event_start_date_min.setDate(today.getDate() + 2);...