Histórico da Página
...
The filter feature allows users to select and list documents posted in a folder or form records based on specific filters, allowing users to easily find specific content in folders with several documents posted.
The filters may be set by filling out one or more fields; the more fields are filled out, the more refined the search result will be.
Estado | ||||
---|---|---|---|---|
|
HTML |
---|
<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> |
Basic path
01. After clicking on the Filter option, found under More in the action bar of the top left of the window, define the data by which the contents of the folder or the form records should be filtered.
Expandir | ||
---|---|---|
| ||
The requested data are: Description Subject Document type Author Publisher Document number Modification date Customized metadata |
...