04-21-2008 04:29 AM
04-21-2008 07:12 AM
04-21-2008 09:10 AM
05-01-2008 05:56 PM
05-02-2008 11:23 AM
<a:listItem value="userhome" label="#{msg.my_home}"/>
. This will remove "My Home" from the toolbar at the top.
<script type="text/javascript">
window.onload = hideMyHome;
function hideMyHome(){
var links = document.getElementById("navigator").getElementsByTagName('div');
for(var i=0; i<links.length; i++){
if(links[i].innerHTML.indexOf("My Home") > 0){
links[i].style.visible = 'false';
links[i].style.display = 'none';
}
}
}
</script>
05-05-2008 02:50 PM
In jsp/parts/titlebar.jsp, remove. This will remove "My Home" from the toolbar at the top.<a:listItem value="userhome" label="#{msg.my_home}"/>
<a:listItem value="userhome" label="#{msg.my_home}" rendered="#{!NavigationBean.isGuest}" />
an.isGuest}"
image="/images/icons/user_console.gif"
showLink="false"
action="dialog:userConsole"
actionListener="#{UsersBean.setupUserAction}"
id="alf_user_console">
<f:param name="id" value="#{NavigationBean.currentUser.person.id}" />
</a:actionLink>
05-05-2008 04:35 PM
06-09-2008 10:39 AM
Which is a start, but since it waits until the document is loaded "My Home" still gets rendered but then gets removed, meaning it will flicker before disappearing.
06-09-2008 06:04 PM
<config>
<client>
<show-myalfresco>true</show-myalfresco>
<show-userhome>true</show-userhome>
</client>
</config>
06-12-2008 04:17 PM
Thanks cbosdonnat, nice trick.
I was thinking that with some enhancements, this could become a setting configurable in web-client-config-custom.xml
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.