I also faced same issue. The Action was rendering multiple times. The only problem was with
<img id="image1id" src="#" alt="your image" />
Don't know for what reason src attribute of image was causing to perform rendering multiple times on page. I just changed it to ""`
<img id="image1id" src="" alt="your image" />
and it is working fine now.
Posted On:
28-May-2018 00:43