B4J Library [ABMaterial]: MashPricingTable

Hi y'all

This is all for this week. A pricing table to display your prices.


Adding this component is also a breeze...

B4X:
pricingTable.Initialize(page,"pricetable", "")
   pricingTable.ZDepth = ABM.ZDEPTH_2
   pricingTable.AddProduct("1","Standard","$","59","","Starter Pack","Buy Now","whitered")
   pricingTable.AddProductItem("1", "Perpetual Licence")
   pricingTable.AddProductItem("1", "2 months of free upgrades")
   pricingTable.AddProductItem("1", "Full access to the forums")
 
   pricingTable.AddProduct("2","Enterprise","$","119","","Most Popular","Buy Now","whiteorange")
   pricingTable.AddProductItem("2", "Perpetual Licence")
   pricingTable.AddProductItem("2", "2 years of free upgrades")
   pricingTable.AddProductItem("2", "Full access to the forums")
 
   pricingTable.AddProduct("3","Site License","$","599","","This is Mnca","Buy Now","whitegreen")
   pricingTable.AddProductItem("3", "30 developer licenses (in the same organization)")
   pricingTable.AddProductItem("3", "Perpetual Licence")
   pricingTable.AddProductItem("3", "2 years of free upgrades")
   pricingTable.AddProductItem("3", "Full access to the forums")
 
   page.Cell(1,1).AddComponent(pricingTable.ABMComp)

This is DonationWare
 
Top