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?

Table sort in com_php?
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Table sort in com_php?
#14953
Table sort in com_php? 12 Years, 11 Months ago Karma: 0
Thanks for this awesome set of tools!

Hi I have some custom php content I use com_php and the music collection plugin to do pages ( link 1 - com_php, Music Collection link 2, Link 3 - Com_Php content)...

Anyway, for the first two items above, I'd like to use the Smart content to allow sorting and filtering of data. For the third, there are other plugins I'd like to use...

Is there a function I need to include or something to get it to work to hack those pages?

Thanks again,
Chris
Last Edit: 2011/05/15 22:45 By cveile.Reason: added links
The administrator has disabled public write access.
 
#14955
Re:Table sort in com_php? 12 Years, 11 Months ago Karma: 747
Hello,

If you want to use plugins from "ARI Smart Content" package not only in articles, install "System - ARI Smart Content" plugin instead of "ARI Smart Content" content plugin and set "All components" parameter to "All". The plugin can be downloaded here from "F.A.Q." tab.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#14978
Re:Table sort in com_php? 12 Years, 11 Months ago Karma: 0
Perfect! Some plugins work really nice!

Having an issue with JTableSorter and JDataTable with some component data. Do those AIR plugins work on dynamically created tables? (Tried it here and here, but didn't seem to work...

Alternatively, I tried creating the table with ARI SQL Table wrapped in JdataTable, and that worked perfectly...

I was just hoping that the JDataTable worked with dynamic rows outside of the ARI SQL Table especially for other components so I can just add the jdatatable or jtablesorter code to a view of a component...

Thanks again!
Chris
Last Edit: 2011/05/16 17:46 By cveile.
The administrator has disabled public write access.
 
#14984
Re:Table sort in com_php? 12 Years, 11 Months ago Karma: 747
jQuery UI theme can be selected in "ARI jQuery UI Loader" plugin settings in "Default jQuery UI 1.7.2 theme" drop-down. About problem with your custom tables, it is problem with tables structure, each row is wrapped with <tbody> tag. Use tables in the next format:

Code:


<table>
 <thead>
   <tr>
     <th>...</th>
     ...
     <th>...</th>
   </tr>
 </thead>
 <tbody>
   <tr>
     <td>...</td>
     ...
     <td>...</td>
   </tr>
   ...
   <tr>
     <td>...</td>
     ...
     <td>...</td>
   </tr>
 </tbody>
</table>



It should work fine with "ARI JTableSorter" and "ARI JDataTable" plugins.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#14987
Re:Table sort in com_php? 12 Years, 11 Months ago Karma: 0
DOH! Thanks...that fixed it all up...Of course, I had to modify the components' sql limit to allow it to pull all records, but mission accomplished!

AWESOME set of components. can't say enough...

now back to work!
The administrator has disabled public write access.
 
Go to topPage: 1