Custom Query (7259 matches)
Results (70 - 72 of 7259)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#7821 | worksforme | (1.8.16) Date picker containers is not hidden after initialized | ||
Description |
In 1.8.1, Date picker append ui-helper-hidden-accessible to the #ui-datepicker-div thus make the div invisible from user view. But this class is not added in 1.8.16. |
|||
#2322 | duplicate | (Dialog] Minimize a dialog box | ||
Description |
It would be nice to be able to minimize a dialog box. Add an icon in the top right corner of the container. |
|||
#8728 | notabug | (Urgent) Demo Source Code missing Brackets | ||
Description |
Many closing HTML brackets '>' are missing within the 'view source' boxes on the jQuery demo page on the website. For example, on the page http://jqueryui.com/button/#checkbox, brackets are missing from the 'view source' box. Lines which are missing the '>' bracket are denoted by '' below: <!doctype html> **<html lang="en" <head> <meta charset="utf-8" /> <title>jQuery UI Button - Checkboxes</title> <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.0/themes/base/jquery-ui.css" /> ** <script src="http://code.jquery.com/jquery-1.8.2.js"</script> ** <script src="http://code.jquery.com/ui/1.9.0/jquery-ui.js"</script> <link rel="stylesheet" href="/resources/demos/style.css" /> <script> $(function() { $( "#check" ).button(); $( "#format" ).buttonset(); }); </script> <style> #format { margin-top: 2em; } </style> </head> <body> **<input type="checkbox" id="check" /><label for="check"Toggle</label> **<div id="format" ** <input type="checkbox" id="check1" /><label for="check1"B</label> ** <input type="checkbox" id="check2" /><label for="check2"I</label> ** <input type="checkbox" id="check3" /><label for="check3"U</label> </div> </body> </html> This problem affects many other view source boxes, and may be due to a recent break in common element which generates the demo scripts. |