Skip to main content

Bug Tracker

Side navigation

#3418 closed bug (invalid)

Opened September 27, 2008 08:39AM UTC

Closed September 27, 2008 03:52PM UTC

why can't fields in table disabled?

Reported by: hzasp Owned by: flesler
Priority: major Milestone: 1.3
Component: unfiled Version: 1.2.6
Keywords: attr Cc: hzasp, flesler
Blocked by: Blocking:
Description

the js code:

$("form").children().attr("disabled", "disabled");

the html code:

successed:------------------------

<form>

<input type="text" >

<input type="text" >

<textarea></textarea>

<input type="submit">

</form>

while failed:--------------------

<form>

<table>

<tr><td>

<input type="text" >

</td></tr>

<tr><td>

<input type="text">

</td></tr>

<tr><td>

<textarea></textarea>

</td></tr>

<tr><td>

<input type="submit">

</td></tr>

</table>

</form>

Attachments (0)
Change History (1)

Changed September 27, 2008 03:52PM UTC by flesler comment:1

cc: → hzasp, flesler
resolution: → invalid
status: newclosed

They just can't. There's no special behavior for a disabled table.