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?

How to combine ARI sql table and ARI JTableSorter
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: How to combine ARI sql table and ARI JTableSorter
#25478
How to combine ARI sql table and ARI JTableSorter 12 Years, 2 Months ago Karma: 0
Hi

I have been puzzling already for a while how to combine the ARI sql table and ARI JtableSorter. I saw some threads which slightly touched this one but I can not get it fixed... Could you please give some sample code so I can figure it out. For example the one smart.ari-soft.com/ari-jtablesorter.html

Is it also possible to use both the plugins with an autocomplete search parameter. So if the first 3 letters of a string value are typed in, in real time the matches from a column are given. In fact just like google is doing with a search.

Many thanks in advance,

Jeroen
The administrator has disabled public write access.
 
#25479
Re:How to combine ARI sql table and ARI JTableSorter 12 Years, 2 Months ago Karma: 748
Hello,

1. See a sample code below please:

Code:


{arijtablesorter paging="true"}
  {arisqltable}
    {arisqltablequery}
SELECT id,title
FROM #__content
    {/arisqltablequery}
  {/arisqltable}
{/arijtablesorter}



2. The extension doesn't support autocomplete search.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#25483
Re:How to combine ARI sql table and ARI JTableSorter 12 Years, 2 Months ago Karma: 0
Didn't know it was that easy! Great. Only one small but...

I now have the code:
{arijtablesorter paging="true"}
{arisqltable}
{arisqltablecolumns}
{arisqltablecolumn id="ID" alias="IDEE" width="20%" className="idg"}
{arisqltablecolumn id="NAME" alias="UserName" headerClassName="head"}
{/arisqltablecolumn}
{/arisqltablecolumns}
{arisqltablequery}
SELECT adres AS ID,postcode AS NAME FROM #__locaties
{/arisqltablequery}
{/arisqltable}
{/arijtablesorter}


1. It is not using the alias UserName. It is using just NAME. But it is using IDEE... Do you know what to do?

2. When I am using it with a table with more than 1000 rows it seems not to work. I get a white screen...
Last Edit: 2012/02/24 15:06 By smitjer.
The administrator has disabled public write access.
 
#25486
Re:How to combine ARI sql table and ARI JTableSorter 12 Years, 2 Months ago Karma: 748
1. Could you provide an image where we can see described problem?

2. Try to increase value of "memory_limit" PHP parameter. It can be done with help PHP Settings plugin.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#25564
Re:How to combine ARI sql table and ARI JTableSorter 12 Years, 2 Months ago Karma: 0
Great works awesome!

Thanks
The administrator has disabled public write access.
 
Go to topPage: 1