08-21-2008 04:59 AM
function doSomethingWithADocumentInsideACustomViewFTL(DOCUMENT_NODEREF_ID) {
var alfresco_doc = SomeKindOf.magical_function.which_returns_the_document(“/alfresco/navigate/showDocDetails/workspace/SpacesStore/DOCUMENT_NODEREF_ID”);
var name = alfresco_doc.name;
var some_property = alfresco_doc.properties.some_property;
…
}
08-21-2008 05:16 AM
var url = '/alfresco/command/script/execute/workspace/SpacesStore/SCRIPT_ID/workspace/SpacesStore/' + documentID;
YAHOO.util.Connect.asyncRequest('GET', url,{
success: function(o) {
//the text I need to change is inside a span with id = documentID…
document.getElementById(documentID).innerHTML= o.responseText;
}
});
10-25-2012 11:10 AM
10-26-2012 04:00 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.