If the table panel’s expand / collapse button is successively clicked, the search filters, pagination control, category filters and table are collapsed in unision.
None. Your application is not modified.
You can manually fix the category filter collapsing problem by moving the "CategoryRegion" ID from the current location to its inner table.
Change
<table id="CategoryRegion" class="tv"
cellpadding="0" cellspacing="0" border="0">
<GEN:GROUP
NAME="CustomersCategoryGroup">
<tr>
<td class="cr"
colspan="100">
<table cellspacing="0"
cellpadding="0" border="0" class="cr">
<tr>
<td
class="ca"><GEN:CATEGORYFILTER
NAME="CustomersCategoryFilter"></GEN:CATEGORYFILTER></td>
</tr>
</table>
to
<table
class="tv" cellpadding="0" cellspacing="0"
border="0">
<GEN:GROUP
NAME="CustomersCategoryGroup">
<tr>
<td class="cr"
colspan="100">
<table id="CategoryRegion"
cellspacing="0" cellpadding="0" border="0"
class="cr">
<tr>
<td
class="ca"><GEN:CATEGORYFILTER
NAME="CustomersCategoryFilter"></GEN:CATEGORYFILTER></td>
</tr>
</table>
Version 5.0 Application Migration