Hello
I'm farily new to Actinic and still learning my way around, so I appologise if this is a stupid question.
I am trying to make the postcode field in checkout automatically format itself correctly.
I have tried following the instructions in this thread http://community.actinic.com/showthread.php?t=45487 but it doesn't seem to be working for me.
This is the layout code I have used,
As I said I am new to Actinic and not brilliant with code so simple instructions would be helpful.
Any help would be appreciated.
Thanks
Chris
I'm farily new to Actinic and still learning my way around, so I appologise if this is a stupid question.
I am trying to make the postcode field in checkout automatically format itself correctly.
I have tried following the instructions in this thread http://community.actinic.com/showthread.php?t=45487 but it doesn't seem to be working for me.
This is the layout code I have used,
Code:
<tr> <td> <actinic:block if="%3cactinic%3avariable%20name%3d%22InvoicePrompt008Required%22%20%2f%3e" ><span class="actrequired"></actinic:block> <Actinic:Variable Name="InvoicePrompt008" encoding="html"/> <actinic:block if="%3cactinic%3avariable%20name%3d%22InvoicePrompt008Required%22%20%2f%3e" />*</span></actinic:block> </td> <Actinic:LOCATION TYPE='INVOICEPOSTALCODE'> <td class="InvoiceField" > <input type="text" name="INVOICEPOSTALCODE" size="10" maxlength="50" value="<actinic:variable name="InvoicePostalCode" onblur="format(this, 'postcode')" selectable="false" />" /> <actinic:variable name="InvoiceAddressLookup"/> </td> </Actinic:LOCATION> <actinic:block if="%3cactinic%3avariable%20name%3d%22InvoicePrompt016Visible%22%20%2f%3e"> <Actinic:LOCATION TYPE='DELIVERPOSTALCODE'> <td class="DeliverField" > <actinic:block if="%3cactinic%3avariable%20name%3d%22DeliverPrompt008Visible%22%20%2f%3e"> <input type="text" name="DELIVERPOSTALCODE" size="10" maxlength="50" value="<actinic:variable name="DeliverPostalCode" onblur="format(this, 'postcode')" />" /> <actinic:variable name="DeliveryAddressLookup" /> </actinic:block> </td> </actinic:block> </Actinic:LOCATION> </tr>
Any help would be appreciated.
Thanks
Chris
Comment