Hi all...
I'm trying to include an innerForm.jsp into my purchaseForm.jsp just like
this...

<s:form id="lotForm" name="lotForm">
       <s:hidden name="index" id="index" value="-1"/>
        <s:hidden name="lotId" id="lotId" value="-1"/>
        <s:select 
                list="products"
                listKey="id"
                listValue="description"
                headerKey="0"
                headerValue="%{getText('label.selectOne')}"
                cssClass="text medium"/>
                                                        
        
                <s:textfield key="lot.quantity" id="quantity" required="false"
maxlength="255" cssClass="text medium"/>
                
                <s:textfield key="lot.unitaryPrice" id="unitaryPrice" 
required="false"
maxlength="255" cssClass="text medium"/>
        <div class="buttonBar bottom">
                 javascript:validateLot()  /images/done.gif  
                 javascript:hiddeLotForm()  /images/button_cancel.gif  
        </div>
</s:form>

But when I ran the project, browser shows a balnk page.
Debuging, I found the problem in the <s:select /> element.

I'm using a List in the PurchaseAction to handle the
productList...(products).

Some idea?

Thanks in advance...
-- 
View this message in context: 
http://www.nabble.com/How-to-include-with-%3Cs%3Ainclude-%3E--tp15231831s2369p15231831.html
Sent from the AppFuse - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to