Hi Everyone,
I am having some difficulty understanding the flow of OnePageCheckoutOptions.ftl. Can someone please explain what is happening in the following pieces of code: <div> ${uiLabelMap.EcommerceClickHereToEdit}</div><div align="right"> ${uiLabelMap.EcommerceContinueToStep} 2${uiLabelMap.EcommercePleaseWait}....I understand the general concept of the href="javascript:void(0), but I am uncertain how these are producing the outcome when the onepagecheckout page is rendered(the exploding effect when each is clicked on). Thanks in advance! -CJ |
Hello CJ,
<div><h3> javascript:void(0); ${uiLabelMap.EcommerceClickHereToEdit} </h3></div> In this line there is button of "Click here to edit", when you click on this button then it will open editable form of respective section either cartPanel, shippingPanel, shippingOptionPanel or billingPanel through javascript:void(0); as we have done in checkoutprocess.js by appearing and fading some section over there. <div align="right"><h3> javascript:void(0); ${uiLabelMap.EcommerceContinueToStep} 2 </h3><h3> javascript:void(0); ${uiLabelMap.EcommercePleaseWait}.... </h3> In this when you click on "Contiue to step 2" button it will display "Plese wait processing..." on button and then will show shipping panel. cjhorton wrote: > Hi Everyone, > > I am having some difficulty understanding the flow of > OnePageCheckoutOptions.ftl. Can someone please explain what is happening in > the following pieces of code: > > <div><h3> javascript:void(0); ${uiLabelMap.EcommerceClickHereToEdit} > </h3></div> > > <div align="right"><h3> javascript:void(0); > ${uiLabelMap.EcommerceContinueToStep} 2 </h3><h3> javascript:void(0); > ${uiLabelMap.EcommercePleaseWait}.... </h3> > > I understand the general concept of the href="javascript:void(0), but I am > uncertain how these are producing the outcome when the onepagecheckout page > is rendered(the exploding effect when each is clicked on). > > Thanks in advance! > > -CJ > > > Thanks and Regards Santosh Malviya Enterprise Software Developer Hotwax Media Inc. Indore(M.P.) India Mobile : +91 9977650914 smime.p7s (4K) Download Attachment |
Santos,
Thanks for replying. I feel very embarrassed that I overlooked the javascript files. -CJ On Thu, Jan 15, 2009 at 11:24 PM, Santosh Malviya < [hidden email]> wrote: > Hello CJ, > > <div><h3> javascript:void(0); ${uiLabelMap.EcommerceClickHereToEdit} > </h3></div> > In this line there is button of "Click here to edit", when you click on > this button then it will open editable form of respective section either > cartPanel, shippingPanel, shippingOptionPanel or billingPanel through > javascript:void(0); as we have done in checkoutprocess.js by appearing and > fading some section over there. > <div align="right"><h3> javascript:void(0); > ${uiLabelMap.EcommerceContinueToStep} 2 </h3><h3> javascript:void(0); > ${uiLabelMap.EcommercePleaseWait}.... </h3> > > In this when you click on "Contiue to step 2" button it will display "Plese > wait processing..." on button and then will show shipping panel. > > > cjhorton wrote: > >> Hi Everyone, >> >> I am having some difficulty understanding the flow of >> OnePageCheckoutOptions.ftl. Can someone please explain what is happening >> in >> the following pieces of code: >> >> <div><h3> javascript:void(0); ${uiLabelMap.EcommerceClickHereToEdit} >> </h3></div> >> >> <div align="right"><h3> javascript:void(0); >> ${uiLabelMap.EcommerceContinueToStep} 2 </h3><h3> javascript:void(0); >> ${uiLabelMap.EcommercePleaseWait}.... </h3> >> >> I understand the general concept of the href="javascript:void(0), but I am >> uncertain how these are producing the outcome when the onepagecheckout >> page >> is rendered(the exploding effect when each is clicked on). >> >> Thanks in advance! >> >> -CJ >> >> >> > > -- > Thanks and Regards > Santosh Malviya > Enterprise Software Developer > Hotwax Media Inc. > Indore(M.P.) India > Mobile : +91 9977650914 > |
Free forum by Nabble | Edit this page |