Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
when user clicking a "button" or a "mashup in collection widget", is it possible to delay the binded service to execute after 5 seconds ??
Solved! Go to Solution.
Yes it is quite possible. When you click a button on collection widget call a service (ServiceToDelay). This service will basically return nothing but in body just type pause(5000). It will pause for 5 seconds and then focus goes back to button. Now on service invoke complete of (ServiceToDelay) service, do whatever you wanted to do with button click.
Regards
Shyam
Yes it is quite possible. When you click a button on collection widget call a service (ServiceToDelay). This service will basically return nothing but in body just type pause(5000). It will pause for 5 seconds and then focus goes back to button. Now on service invoke complete of (ServiceToDelay) service, do whatever you wanted to do with button click.
Regards
Shyam
In which thing or resources, ServiceToDelay is present?