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?

CSV Tables
(1 viewing) (1) Guest
Go to bottomPage: 123
TOPIC: CSV Tables
#45254
CSV Tables 10 Years, 9 Months ago Karma: 0
Hi,

I need help customizing the csv tables. There was a couple of issues I had, maybe you have the solution for it.

1. Special characters in uploaded csv table show as ?

Is there a way to automatically convert these into a format that is understood by the browser without having to edit it manually on the csv tables before uploading?

2. I need to have the first x amount of rows of the tables as headings, and these headings need to be excluded from the hover row/cell state. (see example table on website: example).

At the moment my css is as follows, but the hover seems to override the first 3 rows...:

Code:

TABLE.table-sport-odds {
  font-size: 1em;
  background-color: #f2efef;
  color: #000;
}

TABLE.table-sport-odds .actRow_0 {
  font-size: 1em !important;
  font-weight: bold !important;
  background-color: #D32626 !important;
  color: #fff !important;
}

TABLE.table-sport-odds .actRow_1 {
  font-size: 0.813em !important;
  font-weight: bold !important;
  background-color: #EF4343 !important;
  color: #fff !important;
}

TABLE.table-sport-odds .actRow_2 {
  font-size: 0.813em !important;
  font-weight: bold !important;
  background-color: #EF4343 !important;
  color: #fff !important;
}

TABLE.table-sport-odds td, th { 
   text-align: center; 
   border: 1px solid #fff; 
   padding:.2em 5px;
   font-size: 0.813em;
}

/* Table 0 Column Red */
TABLE.table-sport-odds .actCell_0  { font-size: 0.813em; background-color: #EF4343; color: #fff; }

  /* Hover Row */
TABLE.table-sport-odds tr:hover td  {
  background-color: #c4b6b6;
}



Hope you can help,

Thanks,
Nadia
Last Edit: 2013/10/14 11:06 By Nadia.
The administrator has disabled public write access.
 
#45259
Re:CSV Tables 10 Years, 9 Months ago Karma: 748
Hello,

1. Save CSV file in UTF-8 encoding or specify file encoding using "inputEncoding" parameter of {aricsvtable} tag.

2. Add the following CSS rules:

TABLE.table-sport-odds tr.actRow_1:hover td,
TABLE.table-sport-odds tr.actRow_2:hover td {
background-color: #EF4343;
}

Regards,
ARI Soft
The administrator has disabled public write access.
 
#45265
Re:CSV Tables 10 Years, 9 Months ago Karma: 0
Hello,

Thank you for the quick response!

The CSS worked brilliantly, thank you very much.

I am still having issues with the UTF-8 encoding. I entered it in the Parameters section 'Input Encoding' as UTF-8, refreshed the page and I am still getting the ?. see example

Kind Regards,
Nadia
The administrator has disabled public write access.
 
#45266
Re:CSV Tables 10 Years, 9 Months ago Karma: 748
If you file is saved in UTF-8 encoding, it doesn't require to use "inputEncoding" parameter. In other case enter encoding which is used in your file in "inputEncoding" parameter.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#45283
Re:CSV Tables 10 Years, 9 Months ago Karma: 0
Hi,

I have tested this several times now and it is not working. I saved the file as CSV (comma delimited) in UTF-8 encoding, uploaded it and I am still seeing the question marks on the front end.

I tried entering UTF-8 Input Encoding, that didn't change anything.
website link

(see attached image)

The administrator has disabled public write access.
 
#45284
Re:CSV Tables 10 Years, 9 Months ago Karma: 748
Send your CSV file by email so we can investigate the problem.

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