I'm struggling with the same problem as you are (well similar) and general
lack of information / not being able to find information.

I think you may need the following method in your ActionForm bean:

public TaxPayerData getTaxPayers( int index )
{
        return taxPayers[index];
}

as well as:

public TaxPayerData[] getTaxPayers()
{
        TaxPayerData[] taxPayers = new TaxPayerData[list.size()];
      taxPayers = (TaxPayerData[])list.toArray(taxPayers);
        return taxPayers;
}

but if anyone else can comment on this - I would also appreciate
enlightenment.

Cheers
Tony

Reply via email to