My configuration is already with the tabs solution of SiteOrigin. I figured out this:
<script>
jQuery( function ( $ ) {
$('.sow-tabs-panel').on('show', function() {
if( $(this).find( '> :hidden' ) ) {
$(this).find('.lsow-grid-container').isotope('layout');
}
});
} );
</script>
It will reload the grid after changing the tab. That works. But the Filter of the grid will not reload. How can i reload them separately with javascript?