Índex

Speaking of bin...

The bin is where all items deleted from document browsing are stored. Items are displayed to users based on their respective document browsing permissions.

Items deleted from document browsing and stored in the bin can be restored or permanently deleted.

 

<a id="toggleAll" href="#" >Expandir/ocultar informações complementares. </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('Expandir/ocultar ' + soma  + ' informações complementares.');

    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. From the main menu, click Bin.

02. View the folders and documents in the bin.

 

Alternative paths

 

Restore documents

 

01. In the bin, select the folder or document to be restored.

02. Click Restore document.

When clicking this option, the document is restored to its original location (the location in document browsing from which it was deleted).

 

Restore all documents

 

01. From the main menu, click Bin.

02. Click Restore all documents.

When clicking this option, all documents in the bin are restored to its original location (the location in document browsing from which they were deleted).

 

Delete documents permanently

 

01. In the bin, select the folder or document to be deleted permanently.

02. In the message displayed, click Confirm to permanently delete the selected item from the platform.

 

Empty recycle bin

 

01. Click Empty recycle bin.

02. In the message displayed, click Confirm to permanently delete all items in the bin from the platform.

 

 

This documentation is valid as of the 1.5.10 update. Previous updates may contain different information than what you see on your platform.