Hello,
You can use module as any other Joomla! module. Choose module position where do you want to show the module, choose pages (menu items) where the module will be shown and configure module parameters.
If you want to embed the module into an articles then you can use "Content - ARI Data Tables" plugin and place the following plugin code into the article:
Code: |
{aridatatables moduleId="MODULE_ID"}{/aridatatables}
|
Where MODULE_ID is ID of "ARI Data Tables" module instance which you want to load into the article. The module should be enabled.
If you want to show data from Joomla! database with help of the module, set "Source type" parameter to "SQL" and enter "SELECT" SQKL query in "SQL -> SQL query" parameter. For example enter the following query:
Code: |
SELECT
id,
title
FROM
#__content
|
Regards,
ARI Soft