Custom Query (7259 matches)
Results (130 - 132 of 7259)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#8126 | notabug | problem with scrollbar in IE | ||
Description |
When I drag modal dialog box and then drop it, vertical scrollbar grow. I fix it, please add to release: line 802 remove: && $.browser.version < 7 line 804 replace with: document.documentElement.scrollHeight-($.browser.version=='8.0'?5:0), |
|||
#4758 | notabug | Modal dialog in IE8 causes endless event-loop | ||
Description |
Loading the following page in IE8 and pressing the 'Open Dialog' button will cause an endless resize-event loop. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Default Title</title> <!-- JavaScripts --> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/jquery-ui.js"></script> <!-- StyleSheets --> <link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/themes/smoothness/jquery-ui.css" /> </head> <body> <div id="jqd" title="Test!"> <textarea name="test"></textarea> </div> <input type="button" value="Open Dialog" onclick="$('#jqd').dialog({ modal: true, width: 'auto' });" /> </body> </html> After loading the page and pressing the button, add a breakpoint to line 7724 in jquery-ui.js (first line in the resize event handler for dialogs) and you will see this point is hit without end. |
|||
#9045 | invalid | beforeShowDay custom class | ||
Description |
When using beforeShowDay in a datepicker with a range and adding a class to a few dates, JqueryUI won't add anymore the 'selected' CSS class anymore. Using the following Javascript: http://jsfiddle.net/VMKuA/3/ Is this on purpose or is it a bug? |