Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

...

My Documents shows documents posted by the user that are currently awaiting approval. Therefore, the publishing user can monitor and control all of his/her documents pending approval.

 

Estado
subtletrue
titleLearn more

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

...

05. To view the properties of the posted document, select View Properties.

Expandirpanel
titleLearn more

The document properties screen displays document data, such as:

  • Properties such as description, author and creation date, among other information;
  • Version/Review Approval History;
  • Document Version Specification;
  • Document Access Specification;
  • Related Document List;
  • Document Relationships.

Click here for more information on viewing document properties.

06. To view social information for the posted document, select the Social information option.

Learn more
Expandir
title
Painel

The social information screen shows information such as comments in the document, users that support the document, and sharing status. Click here for more details on social information.

...