I have a situation in which the InlineEditBox component would be a nice feature to have in my page. My page consists of a PartialFor component that builds a table of Objects. One of the objects parameters is a notes field. I would like to be able to inline edit this notes field. When I've tried to use the component it doesn't appear to be able to position the inlinedit correctly. Also when I try to edit the text it just disappears. Here is the table in which I am trying to use it Note the component id is 'editNotes'. Is this possible or should I not spend to much time trying to work this out?
<tr jwcid="@tacos:PartialFor" source="ognl:processList" value="ognl:process" index="ognl:index" element="tr"> <span jwcid="@If" condition="ognl:process != null"> <td class="tableinfo" style="font-weight: bold;"> <span jwcid="@If" condition="ognl:process.trProcessType!= null"> <span jwcid="@Insert" value="ognl: process.trProcessType.processName"/> </span> <span jwcid="@Else"> <span jwcid="@Insert" value="ognl:processName">ProcessName</span> </span> </td> <td class="tableinfo"> <span jwcid="statusSelections" /> </td> <span jwcid="@If" condition="ognl:showScheduledField"> <td class="tableinfo" align="center"> <span jwcid=" [EMAIL PROTECTED]" value="ognl: process.scheduled" translator="translator:date,pattern=yyyy-MM-dd"/> </td> </span> <span jwcid="@Else"> <td class="grayedOut"> </td> </span> <td class="tableinfo" align="center"> <span jwcid="[EMAIL PROTECTED]" value="ognl: process.completed" translator="translator:date,pattern=yyyy-MM-dd"/> </td> <td class="tableinfo"> <div jwcid="editNotes"> </div> </td> <td class="tableinfo"> <div > </div> </td> </span> </tr> -- ~chris -- ~chris