I have the following form in which I would like to use an ajax submit component to update my page.  It appears that the request is being sent but my page doesn't seem to update.  I can see the response when viewing it with FireBug and it appears that everything is working correctly.  Here is the page that I'm having issues with:

<div class="TapDiv">

            <div class="infoheadDiv"><span key="tableHeader"></span></div>
            <div class="contentbox">
            <form jwcid="[EMAIL PROTECTED]:AjaxForm" listener="listener:showAddListener"
                updateComponents="ognl:{'processForm'}">
            <table>
                <tr>
                    <td><span key="chooseMethodology">Choos</span></td>

                    <td><span jwcid="@PropertySelection" model="ognl:currentMethods"
                        value="ognl:methodName" /></td>
                </tr>
                <tr>
                    <td><span key="addMeth">Add Meth</span></td>
                    <td><span jwcid="@TextField" value="ognl:newMeth"></span></td>
                    <td rowspan="3"><span jwcid="@tacos:AjaxSubmit" value="message:addnewmethod"
                        updateComponents="ognl:{'processInfo'}" 'shadowLayer')"></span></td>
                </tr>
            </table>
            </form>
            </div>

            <br />
            <div id="shadowLayer" class="shadow"><span>&nbsp;</span></div>

            <div id="processArea" class="information">
            <div jwcid="[EMAIL PROTECTED]" class="contentbox">
            <form jwcid="[EMAIL PROTECTED]" listener="listener:addProcessListener"><span
                key="chooseMethod"></span> <span class="auto_complete"
                jwcid="autoCompleter" size="60" /> <input jwcid="@Submit"
                value="message:addProcess"></input></form>
       
            <table width="100%">
                <form jwcid="@Form">
                <tr>
                    <td class="infohead"><span key="name">Process Name</span></td>
                    <td class="infohead"><span key="order">Process Name</span></td>
                    <td class="infohead"><span key="delete">Process Name</span></td>
                </tr>
                <tr jwcid="@For" source="ognl:meths" value="ognl:methodology"
                    element="tr">
                    <td class="tableinfo" width="50%"><input jwcid="@TextField"
                        value="ognl:methodology.processType.processName " size="90"></input>
                    </td>
                    <td class="tableinfo" width="25%"><input jwcid="@TextField"
                        value="ognl: methodology.ordering" size="2"></input></td>
                    <td class="tableinfo" width="25%"><img jwcid="@Image"
                        image="ognl: assets.deleteAsset" /></td>

                </tr>
                </form>
            </table>
            </div>
            </div>



            </div>

--
~chris

Reply via email to