Autosubmit in the expanded Exposed_filter
Hello :) I have a small problem. I created a dropdown filter in the gallery using the Expodes_filter module and installed an additional submodule called autosubmit so that after selecting a specific value from the dropdown, the albums would be sorted by certain parameters. Everything works fine. However, there's an interesting issue: after theming the dropdown filter, autosubmit stops working... The question is: how can I make it work again?
Here is the code for theming the filter
<div class='filter-all'>
<table style="width: 100%; line-height: 29px;">
<tr><td class="text-1"><?php print $widgets['filter-field_type_object_value_many_to_one']->label; ?></td>
<td><?php print $widgets['filter-field_type_object_value_many_to_one']->widget; ?></td>
<td class="text-2"><?php print $widgets['filter-field_materials_value_many_to_one']->label; ?></td>
<td><?php print $widgets['filter-field_materials_value_many_to_one']->widget; ?></td>
</tr>
</table>
</div>
Perhaps something needs to be specified; I used $variables but couldn't find anything. What should I do? Any suggestions? Maybe someone has faced this before? :)