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
#40154
Re:SCV Tables 10 Years, 12 Months ago Karma: 0
Unfortunately at the moment I am working on localhost, so the website isn't live.

In terms of other extensions, I am using Code7 Responsive Slider the rest is a custom built template made by me. And obviously built with the use of bootstrap framework partially.

I will leave that for now then. I have slightly styled it manually. So now I have two more questions. How to I apply the style for specifically that table, and not all of them. I used the following css to make the first row background blue, but I want this style applied only to a particular table and not all of them:

.actRow_0 {
font-size: 15px;
font-weight: bold;
background-color: #19265E;
color: #fff;
}

Second question:
I'm not sure how to span the rows I need properly. As I understand its this code: {aricsvtablecolumnspan row="-1,0,2,4" startIndex="0" endIndex="3"}

If you look at the screenshot attached, how would I span the cell with "First 5 Numbers Drawn" over the 5 cells where the 5 numbers are directly underneath it. And then span "Last 5 Numbers Drawn" across the other 5 cells with numbers?



Kind Regards,
Nadia
Last Edit: 2013/04/24 14:17 By Nadia.
The administrator has disabled public write access.
 
#40155
Re:SCV Tables 10 Years, 12 Months ago Karma: 0
Had to re-attach screenshot sorry. Here it is.

Last Edit: 2013/04/24 14:19 By Nadia.
The administrator has disabled public write access.
 
#40158
Re:CSV Tables 10 Years, 12 Months ago Karma: 0
I have also just turned on Joomla error reporting to Developer to see what the issue with the accordion was.

This is the error I get:

Notice: Use of undefined constant J2_5 - assumed 'J2_5' in C:\xampp\htdocs\liberia_new\administrator\components\com_arismartcontent\kernel\Articles\j16\class.ArticleController.php on line 101

Fatal error: Class 'JParameter' not found in C:\xampp\htdocs\liberia_new\administrator\components\com_arismartcontent\kernel\Mambot\class.MambotProcessHelper.php on line 164

Any ideas?

I also get the following error with just the csv table:

Strict Standards: Only variables should be assigned by reference in C:\xampp\htdocs\liberia_new\plugins\system\arismartcontent\arismartcontent.php on line 35
The administrator has disabled public write access.
 
#40168
Re:CSV Tables 10 Years, 12 Months ago Karma: 747
Download and upgrade the extension to fix the problem with error messages.

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

The update fixed the errors like you said

Still nothing happens when I wrap the csv table in {arijdatatable} nothing happens visually.

In terms of other extensions, I am using Code7 Responsive Slider the rest is a custom built template made by me. And obviously built with the use of bootstrap framework partially.

I will leave that for now then. I have slightly styled it manually. So now I have two more questions. How do I apply the style for specifically that table, and not all of them. I used the following css to make the first row background blue, but I want this style applied only to a particular table and not all of them:

.actRow_0 {
font-size: 15px;
font-weight: bold;
background-color: #19265E;
color: #fff;
}

Second question:
I'm not sure how to span the rows I need properly. As I understand its this code: {aricsvtablecolumnspan row="-1,0,2,4" startIndex="0" endIndex="3"}

If you look at the screenshot attached, how would I span the cell with "First 5 Numbers Drawn" over the 5 cells where the 5 numbers are directly underneath it. And then span "Last 5 Numbers Drawn" across the other 5 cells with numbers?




Kind Regards,
Nadia
Last Edit: 2013/04/25 08:48 By Nadia.
The administrator has disabled public write access.
 
#40232
Re:SCV Tables 10 Years, 12 Months ago Karma: 747
Add the following code to {aricsvtable}:

Code:


{aricsvtablecolumnspan row="0" startIndex="2" endIndex="6"}
{aricsvtablecolumnspan row="0" startIndex="7" endIndex="11"}



You can also add an unique CSS class name for the table. For this use "className" attribute for {aricsvtable} tag. For example className="myTable" and then use the following CSS rule:

Code:


TABLE.myTable .actRow_0 {
  font-size: 15px;
  font-weight: bold;
  background-color: #19265E;
  color: #fff;
}



PS: "ARI JDataTable" doesn't work with HTML tables which use "colspan" or "rowspan".

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