Remove the 'name' and 'type' attribute out of your <html:form>.  Why?  

* They are deprecated (in Struts 1.1)
* If the name doesn't exactly match what you have in your config, 
  it'll result in a new instance of the bean
* You don't need it -- you action mapping definition
  for the allocationAction should handle it

Sri

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 07, 2003 12:10 PM
To: [EMAIL PROTECTED]
Subject: crazy error


Hi,

 I have a action calls which populates the formbean and forward to JSP where I can see 
the values but when I submit the jsp back to the same action the values or lost.

 the jsp code is ( from the javasript I can see the values I print in the
alerts) and I get the value I set to "actionstr" in the action servlet but none of the 
other values like "product_id" or "period_end_date".  What is wrong??

Regards
Rajesh J
function cancelr()
{
  allo.actionstr.value="cancel";
  alert(allo.period_end_date.value);
  alert(allo.product_id.value);
  allo.submit();
}

</script>
</head>

<body topmargin="0" leftmargin="0">
<html:form action="allocationAction"
               name="allocationActionForm"
               type="lam.mffs.form.AllocationActionForm"
               styleId="allo"
               scope="session">
<html:hidden property="actionstr" styleId="actionstr"/>
<table border="0" width="100%" height="922" cellspacing="0" cellpadding="0">
  <tr>
    <td width="100%" height="72" bgcolor="#000066" style="color: #FFFFFF"> 
&nbsp;<strong><font size="8" face="ATSackLightRomNoBalls"><html:img width="61" 
height="45" src="images/top.bmp" border="0"/>MFFS</font></strong></td>
  </tr>
  <tr>
    <td width="100%" height="20" bgcolor="#E3FFFF" style="color: #FFFFFF"> &nbsp;</td>
  </tr>
  <tr>
    <td width="100%" height="823" style="color: #FFFFFF" valign="middle" align 
="center">&nbsp;
      <table border="1" width="652" cellpadding="0" cellspacing="1" bordercolor 
="#000000" bordercolorlight="#000000" bordercolordark="#000000">
        <tr>
        <td style="BACKGROUND-color: #e0ebf5" width="312" bordercolor="#FFFFFF" 
bordercolorlight="#FFFFFF" bordercolordark="#FFFFFF" align="right" nowrap>
          Period End Date&nbsp;&nbsp;</td>
          <td style="BACKGROUND-color: #e0ebf5" width="324" bordercolor=" #FFFFFF" 
bordercolorlight="#FFFFFF" bordercolordark="#FFFFFF">
              <html:text tabindex="1" property="period_end_date" styleId 
="period_end_date" size="10"/>
          </td>
        </tr>
        <tr>
        <td style="BACKGROUND-color: #e0ebf5" width="312" bordercolor="#FFFFFF" 
bordercolorlight="#FFFFFF" bordercolordark="#FFFFFF" align="right" nowrap>
          Product ID&nbsp;&nbsp;</td>
          <td style="BACKGROUND-color: #e0ebf5" width="324" bordercolor=" #FFFFFF" 
bordercolorlight="#FFFFFF" bordercolordark="#FFFFFF">
              <html:text tabindex="2" property="product_id" styleId="product_id" 
size="10"/>
          </td>





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


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

Reply via email to