<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Need to customize Web client UI, but only for Guest user in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/need-to-customize-web-client-ui-but-only-for-guest-user/m-p/173484#M126628</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;There aren't out of the box configuration options for this I'm afraid, however, you should be able to do most of it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can use the rendered attribute on components defined in the JSP page or our boolean evaluator component to 'hide' stuff. If you look in browse.jsp you'll see the use of the following value binding expression:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;#{NavigationBean.isGuest == false}&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Search the other JSPs for other examples.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Mar 2008 10:20:44 GMT</pubDate>
    <dc:creator>gavinc</dc:creator>
    <dc:date>2008-03-25T10:20:44Z</dc:date>
    <item>
      <title>Need to customize Web client UI, but only for Guest user</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/need-to-customize-web-client-ui-but-only-for-guest-user/m-p/173483#M126627</link>
      <description>Hello,I need to customize the Web Client user interface, but only for guest users.Basically, when someone connects to the Web Client as a guest user, I need to disable/hide some UI elements that should still remain accessible to "normal" users.Here are the elements I'd like to remove from the UI:- t</description>
      <pubDate>Fri, 21 Mar 2008 20:46:07 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/need-to-customize-web-client-ui-but-only-for-guest-user/m-p/173483#M126627</guid>
      <dc:creator>theorbix</dc:creator>
      <dc:date>2008-03-21T20:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: Need to customize Web client UI, but only for Guest user</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/need-to-customize-web-client-ui-but-only-for-guest-user/m-p/173484#M126628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;There aren't out of the box configuration options for this I'm afraid, however, you should be able to do most of it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can use the rendered attribute on components defined in the JSP page or our boolean evaluator component to 'hide' stuff. If you look in browse.jsp you'll see the use of the following value binding expression:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;#{NavigationBean.isGuest == false}&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Search the other JSPs for other examples.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 10:20:44 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/need-to-customize-web-client-ui-but-only-for-guest-user/m-p/173484#M126628</guid>
      <dc:creator>gavinc</dc:creator>
      <dc:date>2008-03-25T10:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: Need to customize Web client UI, but only for Guest user</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/need-to-customize-web-client-ui-but-only-for-guest-user/m-p/173485#M126629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Gavin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the hint. I started modifying the WebClient and some changes are actually very simple.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For instance, to disable - just for the guest user -&amp;nbsp; the "User options" icon in the toolbar, I only had to add the modifier option in the &lt;/SPAN&gt;&lt;STRONG&gt;titlebar.jsp&lt;/STRONG&gt;&lt;SPAN&gt; page:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="color:#0040FF;"&gt;&amp;lt;%– user preferences –%&amp;gt;&lt;BR /&gt;&amp;lt;a:actionLink value="#{msg.user_console}" &lt;STRONG&gt;rendered="#{!NavigationBean.isGuest}"&lt;/STRONG&gt;&lt;BR /&gt;image="/images/icons/user_console.gif"&lt;BR /&gt;showLink="false"&lt;BR /&gt;action="dialog:userConsole"&lt;BR /&gt;actionListener="#{UsersBean.setupUserAction}"&lt;BR /&gt;id="alf_user_console"&amp;gt;&lt;BR /&gt;&amp;lt;f&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;aram name="id" value="#{NavigationBean.currentUser.person.id}" /&amp;gt;&lt;BR /&gt;&amp;lt;/a:actionLink&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now I'll look at how to hide the links to the "My Home" space (again, only for the Guest user) from both the toolbar and the navigator pane. Hopefully it should not bee too difficult.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 22:13:16 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/need-to-customize-web-client-ui-but-only-for-guest-user/m-p/173485#M126629</guid>
      <dc:creator>theorbix</dc:creator>
      <dc:date>2008-04-16T22:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: Need to customize Web client UI, but only for Guest user</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/need-to-customize-web-client-ui-but-only-for-guest-user/m-p/173486#M126630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Oh… by the way: I think this change should be included in the main code stream of the Web Client: when accessing to Alfresco in guest mode, there is no reason at all to show the User Options icon in the toolbar…&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 22:16:47 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/need-to-customize-web-client-ui-but-only-for-guest-user/m-p/173486#M126630</guid>
      <dc:creator>theorbix</dc:creator>
      <dc:date>2008-04-16T22:16:47Z</dc:date>
    </item>
  </channel>
</rss>

