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
I'm trying to capture row click event but I don't find anything in documentation. Would you please show me an example of that event?
The reason what i need this event is to show in a modal window the information of all the colums of the row clicked, seen and unseen colums, and I don't find anything of that functionality in the documentation. Would you tell me if that functionality exist and where to find out?
Thanks a lot.
Hi luisjordan,
Thank you for your purchase.
You can find row click event in the file
/wp-content/plugins/wpdatatables/assets/js/wpdatatables/wpdatatables.js around line 1141
We can see that you open two same tickets so please close one.
Best regards.
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables
Hi Milan.
Thanks for your answer but I think I didn't explain our needs quite well.
We need on a row click get all the data from the clicked row, seen and unseen columns. It's possible? How? Could you give us an example please?
We try the code below from DataTables jQuery plugin but isn't working.
var table = wpDataTables.table_1;
wpDataTables.table_1.on('select',function(e,dt,type,indexes){
if(type==='row'){
var data = table.rows(indexes).data().pluck('id');
}
});
¿How can I get the columns value of a row when is clicked?
Thanks a lot
Hi luisjordan,
You can take a look at the example of that in file wpdatatables.js on line #957:
data variable will be an array with values of all row columns values (visible and hidden).
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables