Custom Query (7259 matches)
Results (73 - 75 of 7259)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1786 | duplicate | Jquery UI runs infinit loop in Firebug | ||
Description |
When I attempt to utilize any of the Sortable/Draggable effects on http://ui.jquery.com examples page, my Firebug goes crazy in an infinite loop of errors and it actually prevents the example from running anymore. I am sure others have encountered this problem, but I consider it pretty major since it is on the live UI Jquery site. Thanks, Bryan |
|||
#1787 | fixed | Dialog centering on div creation | ||
Description |
It looks like the issue I found with not centering on scrolling has been resolved (ticket 1703). However, I couldn't find anyplace where it looked like another issue I have found has been noted or addressed. The issue occurs when trying to set 'position': 'center' on a dialog where you use the $('<div></div>') method of creating the dialog dynamically. Specifically, if you try to get the height/width of uiDialog prior to appending the element to the body, the height and width of uiDialog will be 0 and you won't get a true centering. Here is how I addressed both of these issues in this.open of ui.dialog:
|
|||
#1789 | fixed | Impossible to initialize an empty tabset | ||
Description |
There is no possibility to initialize an empty tabset (e.g. to add all tabs dynamically. Small fix in tabify() method (line 183) make things better: if (this.$tabs.length && $.data(this.$tabs[o.initial], 'href')) { Lines 362-373 of ui.tabs.js (add method): if (url.indexOf('#') == 0) { // ajax container is created by tabify automatically var $container = $(url); // try to find an existing element before creating a new one $container = ($container.length && $container || $('<div id="' + url.replace('#', '') + '" class="' + o.containerClass + ' ' + o.hideClass + '"></div>')) [method](position > 0 ? this.$containers[position - 1] : $(this.source)); } var $foo = $('<li><a href="' + url + '"><span>' + text + '</span></a></li>'); if(position > 0) $foo[method](this.$tabs.slice(position - 1, position).parents('li:eq(0)')); else { $foo.appendTo($(this.source)); $container.removeClass('ui-tabs-hide'); } Basically we've to check if this.$tabs array is not empty... |