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?

New Style for ARI SQL Table
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: New Style for ARI SQL Table
#3376
New Style for ARI SQL Table 14 Years, 2 Months ago Karma: 0
Hello ARI-Team!

I need to change the style of ARI SQL Table (and I can't wrapp with your ajax tables because of some interactions of my SQL Table content and linked lightboxex inside the table)

1) Is it possible to use 'ARI JQuery UI Loader' for that purpose?
2) If yes where can I find further information about it.
3) And Information for ccs styling regrading ARI SQL Table in common

Thanks!

Regrads
Martin
Last Edit: 2010/03/11 14:26 By mole.
The administrator has disabled public write access.
 
#3377
Re:New Style for ARI SQL Table 14 Years, 2 Months ago Karma: 748
Hello,

Regarding your questions:

1 and 2. You can read about "jQuery UI" styles here and choose appropriate styles for table, table row and table cell. Here you can generate your own themes. Only one problem, currently the component doesn't contain plugin which can load theme from "ARI JQuery UI Loader" plugin, but you can submit feature here and we'll implement this plugin.

3. "ARI SQL Table" generate simple HTML table in the following format:

Code:


<table>
  <!-- Header -->
  <thead>
    <tr>
      <th>Col 1</th>
      <th>Col 2</th>
      ...
      <th>Col N</th>
    </tr>
  </thead>
  <!-- Data -->
  <tbody>
    <tr>
      <td>Col 1</td>
      <td>Col 2</td>
      ...
      <td>Col N</td>
    </tr>
  </tbody>
</table>



You can specify CSS class for <table> tag with help 'className' parameter of {arisqltable} plugin tag. You can also specify CSS classes for necessary column, use for this purpose 'className' and 'headerClassName' parameters of {arisqltablecolumn} tag.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#3379
Re:New Style for ARI SQL Table 14 Years, 2 Months ago Karma: 0
FINE! THANKS!

Is it possible to get the zebra-effect (even,odd with different backgrounds)?

Regrags
Martin
The administrator has disabled public write access.
 
#3381
Re:New Style for ARI SQL Table 14 Years, 2 Months ago Karma: 748
Yes, set 'advancedStyling' parameter of {arisqltable} tag to 'true' then each odd row in table will have 'actRow_odd' CSS class and each even row in table will have 'actRow_even' CSS class.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#3384
Re:New Style for ARI SQL Table 14 Years, 2 Months ago Karma: 0
THANKS & Solved


Regrads
Martin
Last Edit: 2010/03/11 15:51 By mole.
The administrator has disabled public write access.
 
Go to topPage: 1