vendeka
Forum Replies Created
-
Forum: Plugins
In reply to: [Inline Google Spreadsheet Viewer] DataTables doesn't load on secondary tabsHi,
The easiest but dirty way to solve this issue is to add below code before the </head> tag.
<script type="text/javascript"> jQuery(document).ready(function($) { $('a[data-toggle="tab"]').on('shown.bs.tab', function (e) { $('.dataTable:visible').each( function(e) { $(this).DataTable().responsive.recalc(); }); }); }); </script>Since most of templates supporting to add such code through admin panel, I decided to share it with others.
Thank you
Forum: Plugins
In reply to: [Inline Google Spreadsheet Viewer] TranslationHi,
Thanks for quick update.
It seems working without any problem so far.
Forum: Plugins
In reply to: [Inline Google Spreadsheet Viewer] TranslationHi,
I am trying to change ‘Show/Hide Colums’ text using below config but it is not working:
{ "dom": "TC<'clear'>lfrtip", "colVis": { "buttonText": "Change " } }The config is correct and I checked here which should be ok.
I appreciate your kind help.
Thank you
Forum: Plugins
In reply to: [Inline Google Spreadsheet Viewer] TranslationHi,
From plugin’s settings screen, I try below setting but it refuses to save:
{ "dom": 'T<"clear">lfrtip', "tableTools": { "aButtons": [ { "sExtends": "copy", "sButtonText": "Copy to clipboard" }, { "sExtends": "csv", "sButtonText": "Save to CSV" } } ] } }I prefer to make sitewide setting but I couldn’t make it work.
Thank you for your support!
Forum: Plugins
In reply to: [Inline Google Spreadsheet Viewer] DataTables doesn't load on secondary tabsHi,
I just started using your plugin and I love the work you have done.
Unfortunately, I am also having the same issue that responsive tables don’t fit into the page for 2nd tab when viewing in mobile.
I checked the reference webpages you provided but couldn’t figure out how to do it in wordpress. I would appreciate if you can give some more examples or even some live demo to solve this issue.
Thank you