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?

Not presenting all data
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Not presenting all data
#26031
Not presenting all data 12 Years, 2 Months ago Karma: 0
Hi!

I am want get 5 columns of data back... I also tried this in phpmyadmin and there it works flawless. But when placing this code in joomla in an article than i just get 3 columns (jos_prijzen_omschrijving, jos_prijzen_dagprijs, jos_prijzen_weekprijs)... Also the headings are not shown.

Could you please help me out?

Thanks

{arijtablesorter paging="true"}
{arisqltable}

{arisqltablecolumns} {arisqltablecolumn id="jos_prijzen_omschrijving" alias="ID1" width="20%" className="idg"} {arisqltablecolumn id="jos_prijzen_bols_dagprijs" alias="ID2" className="idg"} {arisqltablecolumn id="jos_prijzen_bols_weekprijs" alias="ID3" className="idg"} {arisqltablecolumn id="jos_prijzen_dagprijs" alias="ID4" className="idg"} {arisqltablecolumn id="jos_prijzen_weekprijs" alias="ID5" className="idg"} {/arisqltablecolumns}

{arisqltablequery}

SELECT jos_prijzen.omschrijving, jos_prijzen_bols.dagprijs, jos_prijzen_bols.weekprijs, jos_prijzen.dagprijs, jos_prijzen.weekprijs FROM jos_prijzen_bols JOIN jos_prijzen ON jos_prijzen_bols.omschrijving = jos_prijzen.omschrijving

WHERE jos_prijzen.omschrijving LIKE 'aggre%'

{/arisqltablequery}
The administrator has disabled public write access.
 
#26033
Re:Not presenting all data 12 Years, 2 Months ago Karma: 748
Hello,

Try the next code:

Code:


{arijtablesorter paging="true"}
  {arisqltable}
    {arisqltablequery}
      SELECT 
        P.omschrijving, 
        B.dagprijs, 
        B.weekprijs, 
        P.dagprijs, 
        P.weekprijs 
      FROM 
        #__prijzen_bols B INNER JOIN #__prijzen P 
          ON B.omschrijving = P.omschrijving
      WHERE 
        P.omschrijving LIKE 'aggre%'
    {/arisqltablequery} 
  {/arisqltable}
{/arijtablesorter}



If it doesn't help provide screenshots of "ARI SQL Table" and "ARI JTableSorter" plugins settings page or a temporary access to your J! backend by email so we can investigate an issue.

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