Custom Query (7259 matches)
Results (91 - 93 of 7259)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#15057 | notabug | Dialog position flip doesn't work when pass coord manually | ||
Description |
Dialog position flip doesn't work when I pass coordinates manually, but It works when it is an event. Here is the link. https://jsfiddle.net/38z9m9j9/ |
|||
#3952 | notabug | Show / SlideDirection | ||
Description |
I've found some problems using show and slideUp / slideDown functions specifically with drop down menus. I've included a minimal test case which demonstrates everything and is commented. |
|||
#9153 | worksforme | Radio buttonset selection takes old element on change | ||
Description |
Hello, I have tested the new version and I found that when I have a radio buttonset and I try to retrieve the selected element it takes the previously selected one. I have modified the example to show how it fails. If you select another element it will say that the selected element is radio2: <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI Button - Radios</title> <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css"> <script src="../../jquery-1.9.1.js"></script> <script src="../../ui/jquery.ui.core.js"></script> <script src="../../ui/jquery.ui.widget.js"></script> <script src="../../ui/jquery.ui.button.js"></script> <link rel="stylesheet" href="../demos.css"> <script> $(function() { $( "#radio" ).buttonset(); $( "#radio > label" ).click( function (){ alert($( "input[name=radio]:checked").attr("id")); }); }); </script> </head> <body> <form> <div id="radio"> <input type="radio" id="radio1" name="radio" /><label for="radio1">Choice 1</label> <input type="radio" id="radio2" name="radio" checked="checked" /><label for="radio2">Choice 2</label> <input type="radio" id="radio3" name="radio" /><label for="radio3">Choice 3</label> </div> </form> <div class="demo-description"> <p>A set of three radio buttons transformed into a button set.</p> </div> </body> </html> |
Note: See TracQuery
for help on using queries.