--
TWiki:Main/CatherineLiegois
- 16 Sep 2009
I have 2 tables :
- Table 1 with : format=textarea
example: {format=" textarea, 3x70, Name" changerows="off" quietsave="off"}
- Table 2 with EDITCELL tag
example : | Status | Status %EDITCELL{select,1 , Status, Notified, Proposal, Notified, Terminated}% |
If I edit Table 1 before Table 2, the EDITCELL tag in Table 2 is removed.
I have installed the latest twiki update for the
EditTablePlugin : 17 Apr 2009-Release 4.9.1
--
TWiki:Main.NickThorpe
- 12 Apr 2010
To fix this I suggest adding:
elsif($doSave) {
$text .= $theRow;
}
Below the if ($doEdit) block in sub handleTableRow. This appears sufficient to prevent the removal of EDITCELL in the unchanged tables by the final else block. I'm going with this change on my group's local Twiki install for now.
--
TWiki:Main.NickThorpe
- 12 Apr 2010
Thanks Nick for providing patch for this issue. Yes, it was a bug.
Thanks
TWiki:Main/CatherineLiegois
for reporting the issue.
I have checked in the code provided by you.
--
TWiki:Main.SopanShewale