ThemeRoller Website Down (502 CloudFlare error)
I am trying to make a custom theme with the ThemeRoller. The preview does not update, and when I go to download after selecting modules, I get a 502 cloudflare error.
Download Builder on JqueryUI website returns "Error 502" after clicking on Download button.
Hi! Download Builder on JqueryUI website returns "Error 502" after clicking on Download button.
JQMIGRATE ALERT: jQuery.expr.filters is now jQuery.expr.pseudos
JQMIGRATE ALERT: jQuery.expr.filters is now jQuery.expr.pseudos jquery-ui.js:2223 if ( $.expr && $.expr.filters && $.expr.filters.animated ) {
Scale effect direction not working
Hello! The 'direction' option for the 'scale' effect doesn't seem to work for me, so I tried it on the jQuery UI demo website and got the same results: https://streamable.com/hw465 It just produces the regular scale effect as if no direction were applied. My Chrome is Version 74.0.3729.169 (Official Build) (64-bit). jQuery etc. is the one from the currently live demo website. Can anybody else reproduce this?
jQueryUI selectmenu refresh bug
Hi all , Found a bug in the selectmenu button event handler management. It is almost unnoiticeable, but causes unneded memory/cpu consumption , i.e slow downs etc .. Basically , if I initialize a selectmenu , an appropriate button is created automatically with some event handlers attached to it . That is fine , but if I call selectmenu("refresh") multiple times then - I see the number of remove() event handlers attached to the button increases. Each time I call refresh the button
Re-positioning of dialog after resize event
Hi guys, would be nice if the dialog corrects its position after the browser window was resized. Perhaps you coud provide an option for that.
JQUERY UI Themeroller
Hi, I have problem to set me own UI style. When i try to set something i always go back to empty style and console give me error about bad gateaway :)
Sortable: helper position bugged if sortable is in position:relative which is in overflow: scroll
Hi, I found 2 issues with sortable if it is in relative container which is in overflow: scroll. Look at this jsfiddle demo. Scroll down and drag one of the items there. You will see that after you click on the item, the helper jumps to the bottom by value of scroll position. It happens only at first drag. After some code inspection I've found place where it happens and possible solution. _mouseStart method in sortable module calcaulates parent offset at the beginning (calling _getParrentOffset
JQuery UI Select Box BREAKS Inside Absolutely Positioned Divs?
Anyone know why JQuery UI's Select Box Breaks when put inside a div that's had it's positioning changed from the default static value? https://jsfiddle.net/SkepaWeb/nap04mLa
Flexbox calculated width is rounded down when moving a Sortable helper
flexbox items can be stretched to fit the width of the largest object in the same flex container and the calculated witdh can be a floating number (in Firefox 43.0.1) I found a bug(?) in jQuery UI that the helper for Sortable can have smaller witdhthan the original object - is is rounded down to an integer (I guess it's the same for height when using flex columns instead of rows) I created a dirty fix for myself to manually edit following line in my downloaded version of jquery.js: https://github.com/jquery/jquery-ui/blob/800d76ac17345b6016f3d067b41a757ebd2c9bb8/ui/widgets/sortable.js#L976
jquery-2.2.0 trows error @3649 (acceptData) when widget is called with namespace over a selector that has no match
I am developing a framework of jquery widgets for a new project. They are created by the $.widget factory and they work well using $("selector").myWidget(myOptions). I want to avoid possible name collisions and prefer using the form $.myNamespace.myWidget(myOptions, mySelector), but an error is thrown when the selector matches no element on page: owner is undefined, that I traced to the line 3649, on jquery-2.2.0 (function acceptData). For reference, I've already read (and I think I understood):
Microsoft Edge with autocomplete does not work properly
In Microsoft Edge, when the menuslect event in autocomplete triggers the "select" method, this triggers a "blur" event followed by a "change" event on the element. The result is that the selected item is not set properly at the bottom of the function. I realize this may be an issue with Edge, but possibly consider setting the selectedItem before calling the "select" method to prevent this issue. Specifically: within the menuselect:function()... Move this line: this.selectedItem = item;
to the line
CLA error
Just made few pull requests. First has passed without any problem, but I made a mistake and signed more than two times. Seems that CLA leeked my email to spammers
Widget api documentation: Options
In the small sections about Options with the dialog-example var options = { modal: true, show: "slow" }; $( "#dialog1" ).dialog( options ); $( "#dialog2" ).dialog( options, { autoOpen: false }); I suppose it should say 'option' not 'options'. That confused me for a while.
_updateDatepicker called on setting value/option
I'm currently working on a knockout-based site with extensive use of datepickers. While it will probably not be that bad in actual production scenarios, I'm developing on a dataset that results in 90 datepickers total. It takes knockout a very long time to instantiate this and finally I found it that disabling my datepicker binding reduces a ~1-2 second binding time by up to 1 second. Since I would like to use the datepicker, but also would like a fast UI, I went digging a little. By far the most
CLA form is leaking email addresses to spammers
I signed the CLA to be able to contribute to jQuery UI a month or so ago. I used an email address allocated exclusively for it. Today, I started to receive French language junk mail to that address. Your CLA repo seems to be leaking email addresses to spammers.
1.10.3 sortable works very erratically with flexbox content
Please try it out in Chrome or Firefox beta, soon to be in stable: http://jsfiddle.net/fnTVj/ Dragging a layer up or down works about half of the time for me. I have no idea what the problem is. Being able to use flexbox and sortable together for reversed, start-at-the-bottom layout patterns is crucial for UI widgets like a layers panel. (This is not an edge case.)
Cannot enter a space into an input field.
The situation:There is a Dialog with tabs inside. There is an input field in one of the tabs. That input field has a tooltip attached to it. The problem: When clicking on the input field, the tab itself gains focus. The user is able to type in the input field, but any keys that the tab uses (space, left/right arrows) apply to the tab instead of the input field. This results in the user not being able to enter a space in an input field or navigate the characters in the field using the left/right
Datepicker: changeMonth + changeYear + yearRange causes flash
I'm using jquery 1.9.1 and ui 1.10.2, and Chrome on win8. I found this bug, http://bugs.jqueryui.com/ticket/5493 it's similar, except it's not a full page redraw, only the select list redraws, and you are unable to pick your selection. You are only able to pick if you pick it before the redraw goes. Here's my code, nothing fancy. <label for="dbayPicker">Birthday</label> <div><input type="text" id="dbayPicker" name="dbayPicker" /></div> $("#dbayPicker").datepicker({changeMonth: true, changeYear:
Touch IE10
Hello All I just wanted to share how to add touch support for draggable in ie10 desktop and mobile. Currently draggable will work with a pen or mouse in IE but not touch. To add touch -ms-touch-action needs to be added to the css like below: body{ -ms-touch-action: none; } #draggable { width: 150px; height: 150px; padding: 0.5em; -ms-touch-action: manipulation; } I added a link to the demo below http://helixten.com/jqueryui.html
Themeroller website has broken and missing styling options
Heya, The Themeroller website has two new problems: 1) Under "Font Settings" on the left menu, the "Weight" dropdown shows no choices (and the dropdown arrow is truncated). 2) The "Error" category, normally under the "Highlight" category on the left menu, is completely missing. This is true across the latest stable versions of Chrome, Firefox, and IE. It was working properly under jQuery UI 1.10.1. Regards, TakBaseTech
Themeroller 502 Bad Gateway
Help! I need to create a theme using Themeroller but the site is completely not working. If you go to the main Themeroller page you get the following 502 error: "NetworkError: 502 Bad Gateway - http://download.jqueryui.com/themeroller/parsetheme.css?ffDefault=Lucida%20Grande%2CLucida%20Sans%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=deedf7&bgTextureHeader=highlight_soft&bgImgOpacityHeader=100&borderColorHeader=aed0ea&fcHeader=222222&iconColorHeader=72a7cf&bgColorContent=f2f5f7&bgTextureContent=highlight_hard&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=362b36&iconColorContent=72a7cf&bgColorDefault=d7ebf9&bgTextureDefault=glass&bgImgOpacityDefault=80&borderColorDefault=aed0ea&fcDefault=2779aa&iconColorDefault=3d80b3&bgColorHover=e4f1fb&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=74b2e2&fcHover=0070a3&iconColorHover=2694e8&bgColorActive=3baae3&bgTextureActive=glass&bgImgOpacityActive=50&borderColorActive=2694e8&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=ffef8f&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=25&borderColorHighlight=f9dd34&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=cd0a0a&bgTextureError=flat&bgImgOpacityError=15&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffffff&bgColorOverlay=eeeeee&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=90&opacityOverlay=80&bgColorShadow=000000&bgTextureShadow=highlight_hard&bgImgOpacityShadow=70&opacityShadow=30&thicknessShadow=7px&offsetTopShadow=-7px&offsetLeftShadow=-7px&cornerRadiusShadow=8px"None
Autocomplete bug in handling Korean characters
When Korean characters are copy/pasted into the input box, Autocomplete works. When Korean characters are typed in and the down arrow key is used for selection, Autocomplete does not work, as reported by forum user idevsk, who I have been trying to help via the UI Forum. He says, this action used to work in jQueryUI 1.8.1, but the action does not work in any UI release after that. idevsk built a test script with Korean selections, and I implemented it in jsfiddle.net. I am not set up to type Korean
Autocomplete change event when this.previous is undefined
When I tab into an input text field that has data in it and that has an autocomplete handler attached to it, for some reason, the field does not receive focus, and so the autocomplete "this.previous" variable is not set. (This may be the real bug; the field does receive focus when clicked in.) In any event, when I then tab out of that field, autocomplete's blur handler calls its _change() function, which then compares "this.previous" to "this.element.val()." Because "this.previous" is undefined,
Possible Bug - 1.9 Spinner Fires on F5 Refresh
I have noticed that my spinner fires if it has focus when the user presses F5/Refresh. This happens even when the user has not made any changes to the spinner value in any way and the cursor is just sat in the field. I have code in the spin stop that updates a shopping cart with an AJAX call, which is firing when the user refreshes the page. It shouldn't, and I was wondering whether I'll have to make a workaround, or whether it is a proble, with the spinner itself. Is it a bug, or is it supposed
Unbinding events for 1.8 plugins in 1.9
In widget factory 1.8 i used to bind event like this: this.element.on("click." + this.widgetName, $.proxy(this._doStuff, this)); Which got automatically unbound when calling the destroy method. Now in widget factory 1.9 there is a eventNamespace variable which seems to be the widgetName + some number. this._on($element, { click: this._doStuff }); Is essentially the same as: this.element.on("click." + this.eventNamespace, $.proxy(this._doStuff, this)); In the destroy method jQuery UI1.9 event are
Bug tracker
On the bug tracker page, the link "UI Developer Guidelines" doesn't exist. Considering all of the issues I've been having with documentation and the new jQuery UI API documentation, could we get the documentation added to bug tracker? Or should I be submitting these to the "ui.dev" meta tickets?
datepicker date range returndate
Hello, After selecting the start date end date is automatically opened and closed demo : http://biletreyonu.com/dp/index.html $(function() { // $( "#from" ).datepicker({ defaultDate: "+1w", changeMonth: true, numberOfMonths: 2, minDate : 0, onSelect: function( selectedDate ) { $( "#to" ).datepicker( "option", "minDate", selectedDate ); $('#to').datepicker("show"); } }); $( "#to" ).datepicker({ defaultDate: "+1w", changeMonth: true, numberOfMonths: 2, onSelect: function( selectedDate ) { $( "#from"
exposedProps again with only Effects Scale
[right so time, non-disclosure and excessive deep complexities keep me from simply demonstrating this with jsFiddle again, but I'll try to bring awareness since I've gotten a little closer to this problem I think.] with only a complex call to a scale effect completely isolated in a jq UI's custom, the line 322 in jQuery 1.8.2 src = target[ name ]; will result in an _exposedProps_ error in Firefox 15.0.1 stack inspection shows when I call to show scale with this... targ[fn](fx, ao, (tSpeed * 1000));
resizable - problem with alsoResizable and Handles
Hi all, there is a problem with alsoResizable options. If I set all the handles ( n,e,s,w,se,sw,ne,nw ... ) the alsoResizable div does not preserve the correct position. This affects the 1.8 version as the brand new 1.9rc ... regards, Fabio ps: To try, just get the demo file "synchronous-resize.html" and add handles:'n,e,s,w,se,sw,ne,nw' to settings... ------------ Fabio http://www.akweb.it
this._focusable is not a function
I am getting an "this._focusable is not a function" error on line 47 of jquery.ui.menubar.js this._focusable( this.items ); The HTML is: <ul id="bar1"> <li> <a href="">Other Issues</a> <ul> <li><a href="">First</a></li> <li><a href="">Second</a></li> </ul> </li> </ul> // $.getScript("http://view.jqueryui.com/menubar/ui/jquery.ui.menu.js").done(function(script, textStatus) { $.getScript("http://view.jqueryui.com/menubar/ui/jquery.ui.menubar.js").done(function(script,
jQuery UI dialog bugging after page reload
Hello, i'm currently working on a small project and i found a issue with the jQuery UI Dialogs after the page gets reloaded. I'm loading the pages dynamical with the $("id").load("url"); function in JQuery. If the user double clicks on a row in a table the dialog will show and will contain the data the rows currently holds. But after the reload of the page the labels inside the dialog are not changing. This occured in IE8 i dont know what will happen in the other browsers not yet tested. Code: $("#mEdit").dialog({
Remove Sortable Tabs
While creating a sortable tab, i've tried to remove one of the tabs and encounter a problem. The remove method refers to the panel and list array by index. While changing order of tabs the reference is not pointing to the right tab. i think it would be better to remove by idPrefix, same as selecting tabs.
Setting width on an accordion using autoHeight:true and active:false results in jumping
Setting width on an accordion using autoHeight:true and active:false results in jumpy animation on the first slideDown http://dev.jqueryui.com/ticket/5540 Can anyone take a look at this ticket? I've attached a testcase.
Accrodion flicker when you change section if there's scrollbars in sections!
Hello, You can see this problem in the example given here : http://jqueryui.com/demos/accordion/#fillspace Go to section 3. Drag the scrollbar down. Now, each time you select another section or come back to section 3, you have a very ugly flicker. If you reset the position of the slidebar on section 3 then the flicher disappears! Is there a way to get rid of this annoying blinking? Thank you edit : I have this problem only with firefox!! I use firefox 3.6.3
Dialog will move its div-tag to body
Hello, If a dialog is opened and destroyed the div used as dialogcontent will be removed from its original position and will be appended to the body. This becomes a problem when using partial page updates, because the div will move out of the scope of the update. If the update creates the div again it will exist twice now, including all the problems like not unique IDs. I have got two ideas to fix this. Alternative 1: Memorize the parent element Add following line to the _create function this.parentElement
Tabs widget bugs or change in behaviour between UI 1.7.3 and 1.8.x?
Hi everyone I upgraded an intranet project to jQuery UI 1.8.8 a couple of months back, from 1.7.3 I've since further upgraded it with each new UI release and am currently running 1.8.11 There are a couple of niggles I've noticed that have appeared in UI tabs widget between 1.7.3 and 1.8.1 I've asked about these in the Using jQueryUI forum and on IRC but not got any response to I fear these might be bugs. I have a test page setup which will illustrate the changes in behaviour I'm alluding to... http://thenetzone.co.uk/fail/tabs_fail.php
is this a bug.????
Hi, I have asked below mentioned question but no answers. Also tried to analyse it further. I looks like the behavior when i use AutoComplete in a Dialog Model Form is different. http://forum.jquery.com/topic/jquery-ui-autocomplete-in-dialog-model-form My Observation: a) when i focusout from normal auto complete blur/focusout handler is called. in jquery-1.4.1 and the code reaches line no. 2686. b) Though when i focus out from autocomplete in a dialog box form. the code first reaches line. 1887
Ticket #4551 broke jquery.ui.sortable.js downstream
WordPress utilizes jQuery UI in its admin area, including jquery.ui.sortable.js to assist in moving metaboxes around on the screen. When the patch on ticket #4551 was committed, and WordPress updated jQuery UI from 1.7.3 to 1.8.5, it caused a flickering to occur when dragging these metaboxes on screen making it difficult to release the box in the desired position. Relevant WordPress ticket is http://core.trac.wordpress.org/ticket/16955 that documents the issue and points out the code that was removed
Themeswitcher is not working when accessed from primefaces
Hello, I have started using the PrimeFaces components and some of them are using the jQuery CDN. One of these is the Themeswitcher component. When I tried to use it it appears with the thumbnails broken. I have checked the Primefaces demo site and the same problem appears there too. I have posted the relevant post in the Primefaces forum (found here: http://primefaces.prime.com.tr/forum/viewtopic.php?f=3&t=8758&p=34407#p34407 ), but since the problem seems to be somewhere between the Primefaces
Next Page