Posts searches display contents with the searched term; the Forms tab must be selected to filter only results of this type.
<a id="toggleAll" href="#" >Expand/hide additional information. </a>
<script type="text/javascript">
var abertos = 0;
var fechados = 0;
function contador() {
abertos = 0;
fechados = 0;
jQuery(".expand-control").each( function() {
if (document.getElementById(this.id).children[0].className != "expand-control-icon icon expanded") {
fechados++;
} else {
abertos++;
}
});
}
AJS.toInit(function() {
contador();
var soma = abertos + fechados;
$("#toggleAll").html('Expand/hide ' + soma + ' additional information.');
AJS.$('#toggleAll').click(function() {
contador();
if (abertos >= fechados) {
jQuery(".expand-control").each(
function() {
if (document.getElementById(this.id).children[0].className == "expand-control-icon icon expanded") {
jQuery(this).trigger("click");
}
}
)
} else {
jQuery(".expand-control").each(
function() {
if (document.getElementById(this.id).children[0].className != "expand-control-icon icon expanded") {
jQuery(this).trigger("click");
}
}
)
}
});
});
</script> |
01. Enter the text to be searched in the search field located on the upper bar in the platform.
02. A list of suggestions will appear. Users may select a word from the list or enter any other word.
03. Click on the magnifying glass to start the search.
04. The search results screen will be displayed with the All tab selected by default.
05. Click the Forms tab.
Search results are separated by tabs. Up to four tabs are displayed by standard, depending on the result types found. If more than four different types of results are found, a More tab will be added, containing a list of all types found. |
06. This tab displays only search results related to forms, allowing the user to select actions for each form.
A menu is available to the right of each search result containing the actions available for each form. Such actions include:
|
07. New filters can be added to search results by selecting the Add filters link.
08. The filter area will be expanded and form filters are displayed.
Available form filters:
|
09. Select the desired filter(s) and click on Search.
All search results are organized by relevance. Results may be organized by newer or older. For such, select the check box in the upper right corner of the search results screen and select an option. |
This documentation is valid from the 1.5.10 update. If you use a previous update, it may contain information different from what you see on your platform. |