Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

At a loss - can't figure out
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: At a loss - can't figure out
#7744
At a loss - can't figure out 13 Years, 5 Months ago Karma: 0
I am not seeing any instructions on how to use the plugins and modules as described in several forum posts. I made sure the <joomla_dir>/language/en-GB/ folder was writable and re-installed the DataTables pack per instructions in a post, but still no directions as described. I go to Module Manager and select ARI Smart content to display parameters. This is what appears in the description: "Description: Module for processing smart content tags."

When I go to "Components, ARI Smart content, Plugins and select ARI JDataTable, I get the attached page



I'm not seeing any step by step instructions as described in posts such as www.ari-soft.com/ARI-Data-Tables/6350-ARI-Data-Table-Theme.html (last post) or www.ari-soft.com/ARI-Data-Tables/7378-ARI-Data-Table-step-by-step.html

I see even less information when I go to Extensions, Module Manager and select ARI Smart content.

Also, I have selected "Yes" for Using jQuery UI themes, but there don't seem to be options on other modules for displaying UI themes per this post www.ari-soft.com/ARI-Data-Tables/7378-ARI-Data-Table-step-by-step/Page-2.html. Do I have to have a database file uploaded first before getting these options? I noticed on the page that lists all the plugins of the DataTables package that the system types don't have a green checkmark in the Status column and the check box won't allow for activation. Could that be the problem? How do I resolve?

I am using Joomla 1.5 and just downloaded the component 10/12/201 so I assume it is latest version.
Last Edit: 2010/10/12 14:57 By bclark.
The administrator has disabled public write access.
 
#7747
Re:At a loss - can't figure out 13 Years, 5 Months ago Karma: 746
Hello,

ARI Smart Content: DataTable Pack and ARI Data Tables are two different extensions. It seems you have read topics about "ARI Data Tables". Information how to set jQuery UI Theme for 'ARI JDataTable' plugin can be found here. Place the next into an article that embed 'ARI JDataTable' into an article:

Code:


 {arijdatatable bPaginate="true"}
  <table>
    <thead>
      <tr>
        <th>column1</th>
        <th>column2</th>
        <th>column3</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>content1</td>
        <td>content2</td>
        <td>content3</td>
      </tr>
      <tr>
        <td>content1 1</td>
        <td>content2 2</td>
        <td>content3 3</td>
      </tr>
    </tbody>
  </table>
{/arijdatatable}



If you use a WYWIWYG editor switch it to plain text mode before inserting code because it can add some extra HTML entities in 'HTML' mode.

PS: If MooTools library is used by your site template, open 'ARI JQuery Loader' plugin and set 'No conflict' option to 'Yes'.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#7749
Re:At a loss - can't figure out 13 Years, 5 Months ago Karma: 0
Is there any step-by-step for DataTable Pack? Maybe I didn't buy the right thing. I thought Data Tables was a part of the DataTable Pack, but the pack allows for more customization and display options.

I put the coding you said in an article and it did display a table, but how do you specify which data to pull?
The administrator has disabled public write access.
 
#7754
Re:At a loss - can't figure out 13 Years, 5 Months ago Karma: 746
'ARI JDataTable' plugin can be combined with 'ARI SQL Table' plugin and 'ARI CSV Table' plugin. For example, if you want to load data from CSV file which located by the following path:

<joomla_dir>/files/data.csv

use the following code:

Code:


{arijdatatable}
  {aricsvtable file="files/data.csv"}
  {/aricsvtable}
{/arijdatatable}



if you want to load data from database, use the following code:

Code:


{arijdatatable}
  {arisqltable}
    {arisqltablequery}
      SELECT id AS ID,title AS TITLE 
      FROM #__modules
    {/arisqltablequery}
  {/arisqltable}
{/arijdatatable}



Samples of plugins usage can be found in 'Description' field on plugin settings page or on our demo site.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#7755
Re:At a loss - can't figure out 13 Years, 5 Months ago Karma: 0
Okay. I think I've got it now. Just confused by documentation. Thanks.
The administrator has disabled public write access.
 
Go to topPage: 1