Group: Forum Members
Last Active: Thu 12 May 2016
Posts: 50,
Visits: 86
|
Hi all, on the checkout page (v2.0) the billing address shows as default and you need to uncheck the checkbox to display alternative delivery addresses.
My client needs the delivery address box to display as default and uncheck to hide it (in fact it doesnt matter whether we use check or uncheck to hide it)
I have changed the pnlShippingAddress to visible = "true" and that doesn't work. I've also tested a change in the code behind checkout.ascx.vb sub on line 210:
Protected Sub chkSameShippingAsBilling_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles chkSameShippingAsBilling.CheckedChanged If chkSameShippingAsBilling.Checked Then pnlShippingAddress.Visible = True RefreshShippingMethods("billing") Else pnlShippingAddress.Visible = False RefreshShippingMethods("shipping") End If
End Sub
This still doesn't work. The panel doesn't display as default.
Does anyone know why it won't display?
Here's the code for the panels:
<asp:UpdatePanel runat="server" ID="updAddresses" UpdateMode="Conditional"> <ContentTemplate> <div class="checkoutaddress"> <user:CheckoutAddress runat="server" ID="UC_BillingAddress" Title="<%$ Resources: Address, FormLabel_BillingAddress %>" ErrorMessagePrefix="Billing " ValidationGroup="Billing" EnableValidation="true" /> </div> <div class="checkoutaddress"> <!-- Shipping Address Selection/Input Control--> <aspanel ID="pnlShippingAddress" runat="server" Visible="true"> <user:CheckoutAddress ID="UC_ShippingAddress" runat="server" ErrorMessagePrefix="Shipping " ValidationGroup="Shipping" Title="<%$ Resources: Address, FormLabel_ShippingAddress %>" /> </aspanel> </div> <div class="spacer"> </div> <p> <span class="checkbox"> <asp:CheckBox ID="chkSameShippingAsBilling" runat="server" Checked="true" AutoPostBack="true" /> <asp:Label ID="lblchkSameShipping" Text="<%$ Resources: Checkout, ContentText_SameShippingAsBilling %>" runat="server" AssociatedControlID="chkSameShippingAsBilling" EnableViewState="false" /></span></p> <!-- EU VAT Number --> <asplaceHolder ID="phdEUVAT" runat="server" Visible="false"> <div class="section"> <h2> <asp:Literal ID="litEnterEUVAT" runat="server" Text="<%$ Resources: ContentText_EnterEUVat %>" EnableViewState="false" /></h2> <strong> <asp:Literal ID="litMSCode" runat="server" EnableViewState="true" /></strong> <asp:TextBox ID="txtEUVAT" runat="server" EnableViewState="true" AutoPostBack="true"></asp:TextBox> </div> </asplaceHolder> </ContentTemplate> </asp:UpdatePanel>
I've also tried to change the checkbox to checked = "false" and even removed the attribute but still it has no affect on the checkbox default state.
Any help would be much appreciated.
Many thanks
H4 Interactive is a North Wales based Web Design and Development Agency specialising in e-commerce systems and content managed websites
Tue 23 Jul 2013 by
toomuchpresha
|