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?

Link with propertys for Ari Data Table
(1 viewing) (1) Guest
Go to bottomPage: 123
TOPIC: Link with propertys for Ari Data Table
#55287
Link with propertys for Ari Data Table 8 Years, 9 Months ago Karma: 0
Good Day Ari-Soft Community,

We are using Ari Data Tables for a version history(Table with all Versions and changes). When a new version comes out, we want to create a link
which redirects people to our version history, but only showing the version we choose. Something like "website.com?#version=111"

Is this possible in any way?

Thx in advance

She
she
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#55290
Re:Link with propertys for Ari Data Table 8 Years, 9 Months ago Karma: 747
Hello,

Do you want to covert a value with version number to a hyperlink? If yes then you use "Columns settings -> Format" parameter in module settings. For example if column which contains version numbers has name VersionNumber then populate "Columns settings -> ID" parameter with VersionNumber value and enter the following value in "Column settings -> Format" parameter:

Code:


<a href="http://website.com/#version={$value}">Version {$value}</a>



Regards,
ARI Soft
The administrator has disabled public write access.
 
#55293
Re:Link with propertys for Ari Data Table 8 Years, 9 Months ago Karma: 0
No, I would like to post a link somewhere(example twitter) saying: "Yay! Version 1.1 is out now! Check it out here: website.com/#version=1.1" Now when people click on this link they should get redirected to our version history site. But instead of showing all entrys like it would normally do, it only shows the version stated in the link.

Hope this helps, my english is not the best.

Thx in advance

She
she
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#55295
Re:Link with propertys for Ari Data Table 8 Years, 9 Months ago Karma: 747
Sorry, but it is not clear how this redirect is related to "ARI Data Tables" extension. "ARI Data Tables" is used to show data from databases and CSV files.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#55296
Re:Link with propertys for Ari Data Table 8 Years, 9 Months ago Karma: 0
But we tought its possible to filter the Table when loading it with an customized url to the homepage. For example, websites written with jquery are sometimes in just 1 file: website.com/#partTwoOfWebsite. So we tought its also possible to manipulate the table to show only one entry.

Thx in advance
She
she
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#55298
Re:Link with propertys for Ari Data Table 8 Years, 9 Months ago Karma: 747
If you show data from a database, it is possible to use request variables in "WHERE" clause of SQL query. For example if want to select data from a table where value of VersionId field equals to value of "vId" request variable (link of a page will look like site.com/mypage.html?vId=115), query will look like:

Code:


SELECT
 *
FROM
 tbl
WHERE
 VersionId = {$REQUEST:vId}



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