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 Won't work
(1 viewing) (1) Guest
Go to bottomPage: 12
TOPIC: Table Won't work
#875
Table Won't work 15 Years, 3 Months ago Karma: 0
i tried to install some table with CSV Table but it dont work
{aricsvtable file="data.csv"}
{aricsvtablecolumns}
{aricsvtablecolumn id="ID" alias="ID" width="20%" className="idg"}
{aricsvtablecolumn id="NAME" alias="UserName" headerClassName="head"}
{/aricsvtablecolumns}
{/aricsvtable}


my result:
Handy;Unlock;Entbranden;Wert
6280;30;x;x


i only want a CSV Table with a search Button

any solutions or help for me

THX
The administrator has disabled public write access.
 
#876
Re:Table Won't work 15 Years, 3 Months ago Karma: 747
According to your code some variant why the component doesn't work possible:

1) You use ';' as delimeter. ARI CSV Table plugin use ',' by default. For resolve this issue, please, specify delimeter in content
(
{aricsvtable file="data.csv" delimiter=";"}
.....
) or go to Components->ARI Smart Content->ARI CSV Table in backend of your site and set 'Delimeter' property to ';'.

2) data.csv doesn't exist.
The administrator has disabled public write access.
 
#877
Re:Table Won't work 15 Years, 3 Months ago Karma: 0
ok now its ok, BUT how can i use csvtable IN arijdatatable???????

THX and WBR

{aricsvtable file="test1.csv" delimiter=";"}
{aricsvtablecolumns}
{aricsvtablecolumn id="ID" alias="ID" width="20%" className="idg"}
{aricsvtablecolumn id="NAME" alias="UserName" headerClassName="head"}
{/aricsvtablecolumns}

{/aricsvtable}



{arijdatatable bPaginate="true"} column1 column2 column3 coolumn4
content1 content2 content3 content4

{/arijdatatable}
The administrator has disabled public write access.
 
#878
Re:Table Won't work 15 Years, 3 Months ago Karma: 747
Use the following syntax:

{arijdatatable bPaginate="true"}
{aricsvtable file="test1.csv" delimiter=";"}
{aricsvtablecolumns}
{aricsvtablecolumn id="ID" alias="ID" width="20%" className="idg"}
{aricsvtablecolumn id="NAME" alias="UserName" headerClassName="head"}
{/aricsvtablecolumns}
{/aricsvtable}
{/arijdatatable}
The administrator has disabled public write access.
 
#879
Re:Table Won't work 15 Years, 3 Months ago Karma: 747
You can use the following code:

{arijdatatable}
{aricsvtable file="test1.csv" delimiter=";"}
{/aricsvtable}
{/arijdatatable}

There is also usage example here (Example2).

Regards,
ARI Soft
The administrator has disabled public write access.
 
#881
Re:Table Won't work 15 Years, 3 Months ago Karma: 0
ok thx, and i hope my last question:

how can i format table (font-size, table bgcolor..... CSS???

and how can i set the fieldlength (its to small)

here a screenhot

Last Edit: 2009/01/19 13:13 By satarielxx.
The administrator has disabled public write access.
 
Go to topPage: 12