Ticket #3118 (closed bug: notabug)
bug with ui.resizable in FF
| Reported by: | emiliodeg@… | Owned by: | eduardo |
|---|---|---|---|
| Priority: | minor | Milestone: | |
| Component: | ui.resizable | Version: | 1.5.1 |
| Keywords: | table, thead, th | Cc: | |
| Blocking: | Blocked by: |
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
comment:1 Changed 5 years ago by Cloudream
- Priority changed from major to minor
- Milestone set to TDB
comment:3 Changed 4 years ago by eduardo
- Status changed from new to closed
- Resolution set to fixed
Resizables doesn't work for <th> tags. Especially on IE.
You can use a div into the tag:
<th><div id='resizable'></div></th>
comment:4 Changed 4 years ago by scott.gonzalez
- Status changed from closed to reopened
- Resolution fixed deleted
If there's clearly a work-around then why can't we do this for the user?
comment:5 Changed 4 years ago by paul
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.

