Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 23/11/2024 Black Friday 2024

    BIG SALE, 30% discount for all our extensions. Use BF24 coupon code. Hurry up the discount is valid till 3 December.

  • 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.


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?

ARI Smart Content: DTP v. 1.7.5 - aricsvtable
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: ARI Smart Content: DTP v. 1.7.5 - aricsvtable
#14421
ARI Smart Content: DTP v. 1.7.5 - aricsvtable 13 Years, 11 Months ago Karma: 0
Hello,
having a alignment issue for specific columns in aricsvtable. Found no property definition in plugin description. Findings in ARI Soft Forum relates to css parameters like ..

.dataTables_wrapper TABLE TR TD.ari-tbl-col-6
{text-align: right;}

... but this, pls correct me if i am wrong, would have impact on all tables which i want to avoid. Is there any possibilty to assign alignment to specific columns within specific tables by using text-align parameters in aricsvtablecolumn?
i.e {aricsvtablecolumn id="File" alias="File" text-align="left"}{/aricsvtablecolumn}

Alignment is working within static "arijdatatable" i.e."<td style="text-align: right;">content2</td>" So would be perfekt if there is a chance to get this running in aricsvtable as well.
thanks in advance for replying ..
regards reinhard
Last Edit: 2011/05/06 13:19 By stadlmer.
The administrator has disabled public write access.
 
#14432
Re:ARI Smart Content: DTP v. 1.7.5 - aricsvtable 13 Years, 11 Months ago Karma: 763
Hello,

It is possible to assign specific CSS class to column. For example:

Code:


{aricsvtablecolumn id="File" className="my_column"}{/aricsvtablecolumn}



Then wrap {aricsvtable} tag with <DIV> element with specific CSS class:

Code:


<DIV class="fix_tbl">
{aricsvtable}
....
{aricsvtablecolumn id="File" className="my_column"}{/aricsvtablecolumn}
...
{/aricsvtable}
</DIV>



After this add the next CSS rule to "CSS Template" on component backend:

Code:


.fix_tbl TABLE .my_column
{
 text-align: right;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
#14446
Re:ARI Smart Content: DTP v. 1.7.5 - aricsvtable 13 Years, 11 Months ago Karma: 0
Hello,
works perfect... many thanks for your great support!
regards reinhard
The administrator has disabled public write access.
 
Go to topPage: 1