samsk
Forum Replies Created
-
Forum: Plugins
In reply to: [WP DataTable] enable search inputs in footer all columnsHi, no, now its not possible.
You can either implement it via https://github.com/samsk/wp-datatable, or you can contract me to do it.
Forum: Plugins
In reply to: [WP DataTable] FilteringHi, it works, just the backend was temporarily down, when you tried. You can check it now.
Forum: Plugins
In reply to: [WP DataTable] How to make it work in PHP with do_shortcodeNo, beware of quotation:
echo do_shortcode('[wp-datatable id=”mtable” fat=”1″] paging: true, responsive: true, ordering: true, buttons: [ "copy", "csv" ] [/wp-datatable]');
Forum: Plugins
In reply to: [WP DataTable] Position of Export Buttons and Search InputLook at sDOM option on https://legacy.datatables.net/usage/options.
Forum: Plugins
In reply to: [WP DataTable] Column specific search (Search API)This doesn’t work out-of-the box with datatables plugin configuration. You have to create additional filter field or modify existing search field, that all has to be done with javascript as shown in your example (or another one: https://datatables.net/examples/api/multi_filter.html).
You can add javascript to your page via direct text editing (not HTML), or use external file and include it via theme in header/footer.
Forum: Plugins
In reply to: [WP DataTable] Latest entry appear firstHi,
consult datatables sorting: https://datatables.net/examples/basic_init/table_sorting.htmlBest
SamForum: Plugins
In reply to: [WP DataTable] How to make it work in PHP with do_shortcodeSimply pass the whole code to do_shortcode() as 1st argument, it should work.
Forum: Plugins
In reply to: [WP DataTable] Language optionsJust add the language block into wp-datatable block.
Forum: Plugins
In reply to: [WP DataTable] Can not get it workingHi,
you are probably inserting the table not in HTML mode, but in visual editor.
Do you have test url ?Forum: Plugins
In reply to: [WP DataTable] Replacement for jquery data tablesNow its using v1.10.16, I update it every few months.
See https://github.com/samsk/wp-datatable/blob/master/js/datatables.min.js
Forum: Plugins
In reply to: [WP DataTable] Replacement for jquery data tablesSee my usage:
https://dob.sk/aplikacie/financna-sprava/variabilny-symbol/rok-2019/
But, you can use anything what DataTables provides, so https://datatables.net and https://datatables.net/extensions/responsive/ are your friends.
Forum: Plugins
In reply to: [WP DataTable] Replacement for jquery data tablesHi,
this plugin ‘provisions’ a jQuery DataTables framework on a wp page, so you can either enhance existing html table or load new one via ajax.Answers:
1. No. For this you need another plugin, or (IMHO better option) write a small php script that will feed the data to DataTables via AJAX (this is how I’m using it, although I’m also ‘pre-including’ HTML table via Include URL plugin, to avoid extra request on first page load).
2. Yes, you can filter client side or server side, exactly as what DataTables does
3. Yes, just set the table responsive with “responsive”: true
4. YesForum: Plugins
In reply to: [WP DataTable] Using data from Excel or csv file as inputOk, thanks for sharing your solution.
Forum: Plugins
In reply to: [WP DataTable] Using data from Excel or csv file as inputNo this is not possible. You can try it with TablePress, but it requires manual import of file before displaying.
Easiest solution for automated displaying would be probably to read the file in php, display it as html table and maybe apply datatable to it to make it sortable etc..Forum: Plugins
In reply to: [WP DataTable] Basic questionExactly