#113474
admin
Keymaster

Hi,

Yes, it is possible. For example:

const table = document.querySelector('smart-table');

fetch('https://api.example.com/users')
  .then(res => res.json())
  .then(data => {
    table.dataSource = data;
  });

Best regards,
Markov

Smart UI Team
https://www.htmlelements.com/