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
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
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.