cancel
Showing results for 
Search instead for 
Did you mean: 

changes to web-client-config-actions.xml in alfresco 2.0.1

chuck
Champ in-the-making
Champ in-the-making
Hi,
I have noticed that between alfresco 1.4 and 2.0.1 the following has changed:
<param name="id">#{actionContext.id}</param>

to:

<param name="ref">#{actionContext.nodeRef}</param>

Can anyone please advise what knocking on effect this might have on my code ?

Thanks.
2 REPLIES 2

kevinr
Star Contributor
Star Contributor
The only action that uses the full noderef as a parameter is the Cut/Copy clipboard actions, ids of "cut_node" and "copy_node". It will only affect your customisations if you have overriden those actions. The actions need the complete noderef as the clipboard supports copy between standard Alfresco DM spaces and Alfresco WCM sandboxes.

Thanks,

Kevin

chuck
Champ in-the-making
Champ in-the-making
Thanks ! I changed those two and all now works