11-20-2014 07:53 AM
(function()
{
/**
* Alfresco Slingshot aliases
*/
var $html = Alfresco.util.encodeHTML,
isValueSet = Alfresco.util.isValueSet;
if (Alfresco.DocumentList)
{
YAHOO.Bubbling.fire("registerRenderer",
{
propertyName: "zzzz",
renderer: function content_renderer(record, label)
{
var jsNode = record.jsNode,
properties = jsNode.properties,
html = "";
mystatus = properties["zpm:mystatus"] || "";
priority = properties["zpm:priority"] || "";
percent = properties["zpm:percentComplete"] || "";
// I DO NOT KNOW HOW TO ACCESS THIS OBJECT –> zpm:assignee
//assigned = ??????
assigned = "";
html = '<span class="item">Estado: <b>' + mystatus + '</b>';
html = html + 'Priority: <b>'+ priority +'</b>';
html = html + 'Percent : <b>'+ percent +' %</b>';
html = html + 'Asigned to: <b>'+ assigned +'</b>';
html = html + '</span>';
return html;
}
});
}
})();
11-20-2014 10:40 AM
11-20-2014 11:46 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.