Jaxel
Well-known member
I've got a tabbed page:
This can have multiple tabs, each one with it's own
However, if instead of it's own page, it's displayed in a modal window... things get a bit screwy. The first tab shows fine. But any subsequent tabs end up with a "blank"
Anyone got any ideas on how to fix this? Or is this a XenForo bug? @Mike @Kier @Chris D
Code:
<div class="block">
<div class="block-container">
<h2 class="block-tabHeader tabs" data-xf-init="tabs" role="tablist">
<xf:foreach loop="$logs" value="$log" key="$key">
<a class="tabs-tab" role="tab" tabindex="0" aria-controls="{$key}">{$key}</a>
</xf:foreach>
</h2>
<ul class="tabPanes">
<xf:foreach loop="$logs" value="$log" key="$key">
<li role="tabpanel" id="{$key}">
<xf:codeeditorrow value="{$log}" rowtype="fullWidth noLabel" readonly="true" />
</li>
</xf:foreach>
</ul>
</div>
</div>
codeeditorrow
. If displayed on it's own page, it works great.However, if instead of it's own page, it's displayed in a modal window... things get a bit screwy. The first tab shows fine. But any subsequent tabs end up with a "blank"
codeeditorrow
. If you click on the codeeditorrow
, the contents will eventually show up. But you shouldn't have to do this.Anyone got any ideas on how to fix this? Or is this a XenForo bug? @Mike @Kier @Chris D