Hi,

I have some additional input values in a form that are not present in the
table definition that need to be processed in my interceptor. 

I have the following code segment to display all the values in the
fieldValues object I see only the fields that are part of the table
definition but I do not see any of the additional fields - there are quite a
few of them and their number can vary.


    public int preUpdate(HttpServletRequest request, Table table,
            FieldValues fieldValues, DbFormsConfig config, Connection con) 
            throws ValidationException 
    {
         java.util.Iterator iterator = fieldValues.elements();

        while (iterator.hasNext())
        {
            FieldValue value = (FieldValue)iterator.next();
            System.out.println("*************************");
            System.out.println(value.getField().getName());
            System.out.println(value.getFieldValue());
            System.out.println("*************************");
        }

        return GRANT_OPERATION;
    }

Is there any way that I can force these additional fields to be sent to the
interceptor or any way that I can get hold of these values.

Thanks in advance,
Sudeep.


This message is confidential and may also be legally privileged. If you are not the 
intended recipient, please notify [EMAIL PROTECTED] immediately. You should not copy 
it or use it for any purpose, nor disclose its contents to any other person. The views 
and opinions expressed in this e-mail message are the author's own and may not reflect 
the views and opinions of ADP Wilco.



-------------------------------------------------------
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE. 
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
_______________________________________________
DbForms Mailing List

http://www.wap-force.net/dbforms

Reply via email to