Introducing ReUI:Open-source UI components and apps built with React, Next.js and Tailwind CSS
Browse ReUI

DataTable data?


Hello,

Is there a way to load data without using apiEndpoint? I would like to create my custom function to load the data and then pass it to the DataTable instance.

Is this possible in Metronic 9 Tailwind?

Cheers,
OZ


Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(

Replies (3)


Hi Oozman,

Sorry for the delay. Thank you for your suggestion. This function is a good feature to have. Unfortunately, we don't have it available at the moment. We will consider adding it in the future.

For now, can you try to modify the internal variable directly like this?

const dataTable = new KTDataTable(element, dataTableOptions);
console.log(dataTable._config._state.originalData);
dataTable._config._state.originalData = /* */
dataTable.reload(); // reload the datatable


Thank you



Hi Oozman,

The datatable provided in Metronic 9 Tailwind is our custom-built datatable plugin, not the DataTable plugin. Could you please clarify the issue you're experiencing?

Thank you!



Hi,

In the DataTable > Remote Data Source, we are asked to set up an API Endpoint URL.

Instead of an API Endpoint URL, is it possible to have a method that will pass the required data structure/response?

For example, instead of the API Endpoint URL, we have a function like this:

const dataTable = new KTDataTable(element, dataTableOptions);
dataTable.setData({...});

Here, the data parameter value would be a JSON object that the API Endpoint URL would require.

Cheers.


Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(
Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(