Your cart
  • IMG
    {{cart_item.name}}
    {{cart_item.variation_attribute_name}}: {{cart_item.variation_attribute_label}}
    {{cart_item.item_unit}}: {{ setCurrency(cart_item.price)}}
    {{ setCurrency(cart_item.price*cart_item.quantity)}}
    Invalid quantity more than stock
Total :
{{setCurrency(cart.sub_total)}}

There is no item in the cart. If you want to buy, Please click here.

Step 6: Create link to go one page to another page

Complete Application using Grails 3

Created by :
Grails
tutorial
Programming, Software and application
1090
2020-10-14 16:12:27

In web page, link is initial and most important tag. Basically link is called webpage. So in the grails , we can easily as like.

In the site/index page, add following link which redirect to about page

<h4>About Page :  <g:link controller="site" action="about">Go To About Page</g:link> </h4>

In the site/about page, add following link which back to home page

<h4>Home Page :<g:link   absolute="true"> Home Page</g:link>  </h4>

 You can create different way this link in grails. For more, see - http://docs.grails.org/3.0.17/ref/Tags/link.html