-
Type: Task
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: 5.8.0-HF32, 6.0-HF09, 7.2
-
Fix Version/s: 5.8.0-HF33, 6.0-HF10, 7.3
-
Component/s: Actions & Filters
-
Tags:
-
Sprint:TGV 7.2-4
In some use cases, in the case of a download for example, the DoubleClickShield does not allow another click on the action because the marker for request completion is still present.
It would be useful to allow the deactivation of the DoubleClickShield when defining the contribution of the action with a new property like :
<action id="WORKLIST_EXPORT" link="#{clipboardActions.exportWorklistAsZip()}" label="command.clipboard.zipExport" icon="/icons/action_export_zip.gif"> <category>DEFAULT_LIST</category> <filter id="currentWorkListIsNotEmpty2"> <rule grant="false"> <condition>#{clipboardActions.workListEmpty}</condition> </rule> </filter> <properties> <property name="disableDoubleClickShiekd">true</property> </properties> </action>
By default, the value of this property is "false".