Hi All,
I'm a bit of a Newbie to dynamic stamps and need a little help with some code.
I had an issue with stamp prompting before i could place it, even then after entering a valid response it would still not let me place a stamp. I added the highlighted code now its waiting until i place the stamp but the response isn't showing on the stamp.
var cResponse = app.response({
cQuestion: "Enter the PO Number.",
cTitle: "Purchase Order Number",
cLabel: "PO:" });
if(event.source.forReal &&
(event.source.stampName == "#s7c7LeqDrxgy84o8Lg6-wD2"))
{
if (cResponse == null)
{event.value = "*NVALID*";}
else
event.value = cResponse;
}
Thanks heaps