hi,in phpmaker, there is this super feature : filter saved.
When you add filters, there have Name.
When you select a filter by clicking on the Name in the list, the search filter is applied on the List page. (i don’t know if there is js client reload or a server side reload)
But the name of the filter is hide (remain in the list of filter option).If there a way (client script) or server script, to copy that active filter just after the title of the page ?Maybe in client script i car “catch” or “get” the name of the active filter and put it in the top title ?
like something like that :
var my_new_text=" -> <span style='font-style: italic;color:DarkBlue;'>";
my_new_text=my_new_text+$("li.dropdown-item ew-filter-list").val(); //how to get the LI activated element ?????
my_new_text=my_new_text+"</span>";
$( ".text-muted" ).append(my_new_text);
maybe it is possible with the correct jquery selector ?Best regards