Hi,
I have an Invoice Form and a printable Invoice in a Blank application. I want to have a button in the Form to open the blank application with a parameter (InvoiceNo). I tried adding a Javascript-Button with the following code:
Window.open("../blank/blank.php?invoiceno =23")
The blank application opened fine with invoice number 23.
But when I changed the javascript to pass the field value as a parameter like this:
Window.open("../blank/blank.php?invoiceno={invoiceno}")
It opened the blank application with no data. And the URL in the browser address bar looked like this:
http://127.0.0.1/blank/blank.php?invoiceno={invoiceno}
I also tried
blank.php?invoiceno=.{invoiceno}
So how can I send the invoice number from the form to the blank application?
Thanks in advance
MB