Hi,
We have created a custom WDK action. This action me be accessible from a fly-out menu in a folder content form.
We are facing an issue: the menu is displayed but its label is blank.
We tried to add a string in the localization resources of our taskspace application (located in /System/Applications/OurApplication/...). We also tried to modifiy the NLS bundle of the menu bar component.
Edit: Further details: despite the label is blank, the action is working.
Any helps will be appreciated,
Thanks,
Jean-Pierre.
He is the action definition file:
<config version="1.0">
<scope type="my_document">
<menuconfig id="context-menu">
<actionmenuitem dynamic="singleselect" action="view" nlsid="MSG_VIEW" showifdisabled="false" showifinvalid="false"/>
<actionmenuitem dynamic="singleselect" action="my_anonymize_doc" nlsid="MSG_ANONYMIZE_DOC" showifdisabled="false" showifinvalid="false"/>
</menuconfig>
<action id="anonymize_doc">
<desc>
Anonymize a VIP document.
</desc>
<params>
<param name="objectId" required="true" />
</params>
<preconditions>
<precondition class="com.mycompany.web.actions.AnonymizeDocVIP">
<!-- TODO: specify the role
<role>ts_designer</role>-->
</precondition>
</preconditions>
<execution class="com.mycompany.web.actions.AnonymizeDocVIP">
</execution>
<nlsbundle>com.mycompany.web.MenuBarNlsProp</nlsbundle>
</action>
</scope>
</config>