As previously announced via banners and our newsletters, support is no longer available through this platform.
For easier navigation, you can still click on "Submit a Ticket" here, choose the appropriate category, and you'll be redirected to the correct support channel for your plugin.
You can still access your previous tickets and browse public tickets, but please note that responding to tickets is no longer possible.
Paid customers: Please log in to your store account for support.
Pre-purchase questions: Use the support widget in the bottom-right corner of our websites:
https://wpamelia.com
https://wpdatatables.com
https://wpreportbuilder.com
Hi team,
I would like to create a dynamique display. In the front end, when the user clicks on a raw, I would Like to display the column 2 of that raw in another text field. Have can I get that value using query?
Do you have an example?
Thank you in advance.
Gna
Hi Gna
Thank you for reaching out to us.
If I understand correctly you want an entry from the table as a hyperlink that would take the visitor to the specific post or page? That link would be dynamically generated by the content of the cell, right?
If that's true, you could use the CONCAT function, like this:
This will create a hyperlink to www.yourwebsite.com/page1/value1 if there's "value1" entered as cell data in column3. On another row, it could be www.yourwebsite.com/page1/value2 if there's "value2" in the cell, and so on. So, this would be a hyperlink which could be shown in the modal, and it would take the user to the respective page.
I hope this helps, do let us know if you need any further assistance.
Thank you for you answers.
Actually what I want, is to display the column 3 content in a textarea when the user clicks on the row.
onRowclick -->> Display Column 3 content in TextArea.
Something like this
HI team, found the solution:
jQuery(document).ready(function() {
jQuery("#table_1").on('click', 'tr', function() {
var entryrules = jQuery(this).closest("tr").find('td:eq(2)').text();
var exitrules = jQuery(this).closest("tr").find('td:eq(3)').text();
document.getElementById("txtEntryRules").innerHTML = entryrules;
document.getElementById("txtExitrulesId").innerHTML = exitrules;
//alert(exitrules);
});
});
Hi Gna
Firstly I want to apologize for the late reply I was out of the office.
I am glad to hear you found the solution once again I'm sorry I wasn't able to help in the meantime.
Do let us know if there is anything else we can assist you with.
Have a wonderful day!