Forum
List Manager Support
List Manager supportForums
No se permite escribir sin estar logado. Por favor, login
Re: Move Apply and Clear-buttons in filter mod from top to bottom 19.02.2018 20:38
Hi,
the filter content is generated dynamically at this file:
components/com_listmanager/assets/js/listmanager.js
You can move buttons to the bottom removing the line which adds the buttoms at the top section (about line 1313)
//LMJQ(container).append(tools);
and insert it some lines below, about line 1370
if(isAnyFilter) LMJQ(container).append(filter);
// Tools at the bottom
LMJQ(container).append(tools);
Hope this helps
Moonsoft Team
www.moonsoft.es
the filter content is generated dynamically at this file:
components/com_listmanager/assets/js/listmanager.js
You can move buttons to the bottom removing the line which adds the buttoms at the top section (about line 1313)
//LMJQ(container).append(tools);
and insert it some lines below, about line 1370
if(isAnyFilter) LMJQ(container).append(filter);
// Tools at the bottom
LMJQ(container).append(tools);
Hope this helps
Moonsoft Team
www.moonsoft.es