Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 11 Next »

Usage

Add the script tag to head and use the library after the dom is ready

<html>
<head>
  <script src="https://dev-meglerpakke.ambita.com/package/mflex.umd.js" charset="utf-8"></script>
</head>
<body>
  <h1>
    Welcome to Ambita Infoland components!
  </h1>
  <div id="search"></div>
  <div id="product-list"></div>
  <button id="confirm">Confirm order</button>

  <script>
    document.addEventListener('DOMContentLoaded', () => {
      window.Ambita.mFlex.init({
        environment: 'beta',
        token: {
          access_token: '6d5335cf-2118-4639-a4fe-055df547a8cc',
          token_type: 'Bearer',
          expires_in: 3600,
          refresh_token: '24781244-a387-49e6-9860-454f200ce74b',
          scope: ['infoland.mflex', ...],
          expires_at: '2022-09-21T11:50:13.486Z'
        },
        reference: 'test'
      });
      
      window.Ambita.mFlex.search.onSearchResult = (result) => {
        console.log(result);
      };
      
      window.Ambita.mFlex.search.load('#search');
      
      window.Ambita.mFlex.productList.load('#product-list', {
        share:{},
        cadastre:{
          knr: '0301',
          gnr: '224',
          bnr: '64',
          snr: '18'
        }
      });
      
      const confirmButton = document.getElementById('confirm');
      confirmButton.addEventListener('click', async () => {
        const orderNumber = await window.Ambita.mFlex.productList.confirmOrder();
        
        console.log(orderNumber);
      });
    });
  </script>
</body>
</html>

See Usage for more information about how to use the init and load functions.

  • No labels