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?

Insert in article
(1 viewing) (1) Guest
Go to bottomPage: 123456
TOPIC: Insert in article
#11407
Re:Insert in article 13 Years, 4 Months ago Karma: 748
Set "HTML table settings -> Border" parameter to "1" and "HTML table settings -> Border collapse" to "Collapse" in module settings.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#11408
Re:Insert in article 13 Years, 4 Months ago Karma: 0
Thank you so so much

For others: border parameter must be set in ,,HTML table settings" in module settings, not in ,,Plain HTML table" code area.

Thank you great support
The administrator has disabled public write access.
 
#11415
Re:Insert in article 13 Years, 4 Months ago Karma: 0
But I still have problems

1. Now I tried to use MooTable - no table at all.
2. TableSorter - can't sort, some weird style Link
3. Ari Data Table - looks like ordinary table.

I guess I miss something.

Sorry, I am not good at joomla
The administrator has disabled public write access.
 
#11417
Re:Insert in article 13 Years, 4 Months ago Karma: 748
It seems you have missed <thead> tag in your HTML table. When HTML table is used as source, it should look like:

Code:


<table>
 <thead>
   <tr>
     <th>Header 1</th>
     <th>Header 2</th>
     ...
     <th>Header N</th>
   </tr>
 </thead>
 <tbody>
  <tr>
     <td>Val 1</td>
     <td>Val 2</td>
     ...
     <td>Val N</td>
  </tr>
  ...
  <tr>
     <td>Val 1</td>
     <td>Val 2</td>
     ...
     <td>Val N</td>
  </tr>
 </tbody>
</table>

The administrator has disabled public write access.
 
#11426
Re:Insert in article 13 Years, 4 Months ago Karma: 0
Thanks, it works!
Table Type ,,Table Sorter" looks fine now

But now I try TinyTable and the up and down arrows are gone...
The administrator has disabled public write access.
 
#11432
Re:Insert in article 13 Years, 4 Months ago Karma: 748
"ARI Tiny Tables" widget doesn't fully support "Plain HTML Table" source, it works fine with "CSV" and "SQL" sources. If necessary that the widget works fine with "Plain HTML Table", header columns in html table should look like:

Code:


...
<thead>
   <tr>
     <th><div class="tiny-head">Header 1</div></th>
     <th><div class="tiny-head">Header 2</div></th>
     ...
     <th><div class="tiny-head">Header N</div></th>
   </tr>
</thead>
...



Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 123456