Thomas Abraham
unread,Mar 21, 2013, 7:43:11 AM3/21/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to AribaWeb (aribaweb.org)
Hi all,
I'm trying to use w:Confirmation exactly as given in Confirmation.awl:
<a:SetValue confId="$requestContext.nextElementId"/>
<w:TextButton hilite="$true" confirmationId="$confId"
disabled="${!displayGroup.selectedObjects.size() > 0}">Write Off</
w:TextButton>
<w:Confirmation id="$confId" okAction="$writeOffBills">
<a:Content name="header">
<a:Image align="absmiddle" filename="../warning.gif"/
>
<a:Local key="a001">Confirm Write Off</a:Local>
</a:Content>
<a:Content name="content">
<table>
<tr>
<td><a:Local key="a002">Write-off cannot be
reversed. Are you sure?</a:Local></td>
</tr>
</table>
</a:Content>
</w:Confirmation>
But when rendering the page, I get a FieldValueException: Unable to
locate setter method or field for: "confId" on target class
If I declare
public AWEncodedString _confId; in the corresponding java file
then as soon as I click the button which should pop up the
confirmation, I get a small section which says "Loading", and there it
stays.
I'm making some silly mistake...can't put my finger on it...
Thanks in advance...
Thomas