#3118 closed bug (notabug)
bug with ui.resizable in FF
Reported by: | Owned by: | eduardo | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | ui.resizable | Version: | 1.5.1 |
Keywords: | table, thead, th | Cc: | |
Blocked by: | Blocking: |
Description
in firefox 2 and 3, if I do this
.... <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript" src="js/ui/ui.core.js"></script> <script type="text/javascript" src="js/ui/ui.resizable.js"></script> <script type="text/javascript"> $(document).ready(function(){
$("th").resizable();
});
</script> ... ... <table> <thead> <tr> <th>col 1</th> <th>col 2</th> </tr> </thead> <tbody> <tr> <td>foo</td><td>bla bla</td> </tr> <tr> <td>fooo</td><td>blabla bla</td> </tr> </tbody> </table>
the box for resize go to the right and the bottom (default option)
I try changing the options, whitout own css sheet, but doesn't work
in IE7 work ok
Change History (8)
comment:1 Changed 14 years ago by
Milestone: | → TDB |
---|---|
Priority: | major → minor |
comment:2 Changed 14 years ago by
Milestone: | TBD → 1.6 |
---|
comment:3 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:4 Changed 14 years ago by
Resolution: | fixed |
---|---|
Status: | closed → reopened |
If there's clearly a work-around then why can't we do this for the user?
comment:5 Changed 14 years ago by
Whe can't just introduce random workarounds for specific tags. This will not avoid confusion, but do exactly the opposite. We should document the pattern in the plugin's FAQ, but this does not belong in the code.
comment:6 Changed 14 years ago by
Milestone: | 1.7 → 1.8 |
---|
comment:7 Changed 14 years ago by
Milestone: | 1.8 → TBD |
---|---|
Resolution: | → invalid |
Status: | reopened → closed |
Resizables doesn't work for <th> tags. Especially on IE.
You can use a div into the tag:
<th><div id='resizable'></div></th>