cancel
Showing results for 
Search instead for 
Did you mean: 

Moving 'Manage Space Users' Icon

timothy_michael
Champ in-the-making
Champ in-the-making
I need to move the Manage Space Users icon into the space_browse_menu group. I've tried the following web-client-config-custom.xml file and it doesn't seem to be doing the trick. Based on examples I've seen, it looks correct to me. Can anyone clue me in as to what I'm doing wrong? Thanks.


<config>
   <actions>
        
      <!– Add action to more actions menu for each space –>
      <action-group id="space_browse_menu">
         <action idref="manage_space_users" />
      </action-group>
   </actions>
</config>
3 REPLIES 3

kevinr
Star Contributor
Star Contributor
I just tried your example (copied exactly from your post) and it worked fine for me. The Manage Space Users action appears in the context menu for each space in the browse screen and works correctly when clicked. I assume you have restarted the server. Do other customisations you try work? Note that the icons has not "moved" from it's original location - it is still available there also, if you want to "move" it completely then you need this config:

   <config>
      <actions>
         <!– Add action to more actions menu for each space –>
         <action-group id="space_browse_menu">
            <action idref="manage_space_users" />
         </action-group>

         <!– Remove from original location –>
         <action-group id="browse_actions_menu">
            <action idref="manage_space_users" hide="true" />
         </action-group>
      </actions>
   </config>

Thanks,

Kevin

timothy_michael
Champ in-the-making
Champ in-the-making
Hey Kevin -

It's still not working for me. I'm getting the impression Alfresco isn't picking up my web-client-config-custom.xml file at all. I'm making all kinds of seemingly simple changes to it, and none of them are taking affect.

It's stored in a folder called alfresco/extension in my customization jar file. This same folder holds a custom permissionDefinitions.xml and a custom publishing-context.xml which seem to be read fine.

Is there any way I can tell that Alfresco is reading my custom file? Any help would be appreciated.

timothy_michael
Champ in-the-making
Champ in-the-making
Nevermind, my fault - I was under the impression <config> was the root node, so I was missing the <alfresco-config> node.