Search and Top Navigation
#3075 closed bug (worksforme)
Opened July 08, 2008 08:36PM UTC
Closed October 20, 2008 05:51PM UTC
Resizable Form Elements don't POST
| Reported by: | andrew.akester@hotmail.co.uk | Owned by: | eduardo |
|---|---|---|---|
| Priority: | critical | Milestone: | 1.7 |
| Component: | ui.resizable | Version: | 1.5.1 |
| Keywords: | Cc: | ||
| Blocked by: | Blocking: |
Description
When making form elements resizable the name/value data is not submitted when the form is posted.
Attachments (0)
Change History (3)
Changed August 17, 2008 09:55AM UTC by comment:1
| milestone: | → TDB |
|---|---|
| priority: | major → critical |
Changed September 16, 2008 02:27PM UTC by comment:2
| milestone: | TBD → 1.6 |
|---|
Changed October 20, 2008 05:51PM UTC by comment:3
| resolution: | → worksforme |
|---|---|
| status: | new → closed |
Either invalid or already fixed in latest revision. My testcase:
<!doctype html>
<html lang="en">
<head>
<title>jQuery UI Resizable Test Suite</title>
<script type="text/javascript" src="../jquery-1.2.6.js"></script>
<script type="text/javascript" src="../ui/ui.core.js"></script>
<script type="text/javascript" src="../ui/ui.resizable.js"></script>
<script type="text/javascript">
$(function() {
$("#resizable3").resizable();
})
</script>
</head>
<body>
<form method="post" action="">
<input id="resizable3" name="text" value="xxx" />
<input type="submit" />
</form>
output: <?php
echo $_REQUEST["text"];
?>
</body>
</html>