Basic grid layout

This demo shows the basic grid layout which searches three different types: queries, categories and products.

The grid layout has been deprecated. To achieve a grid layout, use the heromobile layout in the grid mode.

<script>
function LBInitAutocomplete() {
  AutoComplete({
    Layout: 'grid',
    TrackerId: '179075-204259',
    Locale: 'en',
    Translations: {
      en: {
        types: {
          item: {
            name: "Products",
            heroName: "Top product"
          },
          query: {
            name: "Searches"
          },
          category: {
            name: "Categories"
          }
        }
      }
    },
    Types: [
      {
        type: 'product',
        size: 8
      },
      {
        type: 'query'
      },
      {
        type: 'category'
      }
    ]
  }, '#q')
}
</script>

<script src="https://cdn.luigisbox.com/autocomplete.js" async onload="LBInitAutocomplete()"></script>
Previous example
2 columns
Line layout examples

Try it out →

Next example
Basic example
Hero layout examples

Try it out →