amiart

Results 4 comments of amiart

I have similar problem (BUG #7588), and found workaround: ``` var $table = $('.table'); setBootstrapTableOptions($table, { smartDisplay:false, sortable: false, search: false, showColumns: false, showRefresh: false, }); function setBootstrapTableOptions(table, options) {...

The same issue is visible in this example: https://examples.bootstrap-table.com/index.html#issues/639.html

My workaround: ``` var $table = $('#table').bootstrapTable({...}); fixBootstrapTableHeaderAndFooterPosition($table); function fixBootstrapTableHeaderAndFooterPosition(table) { var tableInstance = table.data('bootstrap.table'); table.on('reset-view.bs.table', function(ev) { if ($(this).is(':visible')) { fixHeaderAndFooterPosition(); } }); table.on('post-header.bs.table', function(ev) { if ($(this).is(':visible')) {...

Thank you for reply. When I wrote #296, I based it on the ngx_http_realip_module: https://nginx.org/en/docs/http/ngx_http_realip_module.html It has a `set_real_ip_from` parameter, which could be set to `unix:` to specify that the...