I am trying to perform the following customizations on teamsite 6.71 SP1. I have read through the UI Customization Guide but still not too sure where to start.
1) Remove Search and Saved Searches Portal from CCStd.
----------------------------------------------------------------------------------------------------------------------
I've added the following to ui_custom.xml, but nothing happened, what should i be changing?
< globals >
< iwov-delete >
< portlet id="_iw.ccstd.common.home.search.portlet" / >
< portlet id="_iw.ccstd.common.home.savedsearch.portlet" / >
< /iwov-delete >
< /globals >
2) Show custom attribute in CCStd Workflow Task Details.
---------------------------------------------------------------------------------------------------------------------
I have the attributes "iw_deploy_date" and "iw_deploy_time", and I'd like to show them on task details. I added the following to workflow_custom.xml, am I heading in the right direction?
< workflow-config >
< attributelist id="iw.ccstd.taskdetails.attributelist" >
< attribute id="iw_deploy_date" type="date" typeFormat="SHORT" property="variable(iw_deploy_date)"/ >
< attribute id="iw_deploy_time" type="string" property="variable(iw_deploy_time)"/ >
< /attributelist >
< /workflow-config >
3) Adding new buttons next to "Save", "Save As" at the top of datacapture form
------------------------------------------------------------------------------------------------------------------------------------------------
I would like to add a file upload button on the top header bar instead inside the form, and I couldn't find any reference to it in the document. Is this possible to do?
Thanks for answering all my questions.