1

The action in the button does not execute when image attribute is there , any Ideas on how to solve it:

<h:commandButton id="delete" style="vertical-align: bottom"                         
   action="#{uploadComponentBean.delete(docList.id)}"
   image="images/delete.gif">
   <f:ajax event="click" render="table1" />
</h:commandButton>
Amin Memariani
  • 830
  • 3
  • 17
  • 39
Amr Alaa
  • 11
  • 3

1 Answers1

0

Change the event of f:ajax to action like this:

   <f:ajax event="action" render="table1" />

it works for me. for more detail check ajax events

M.A.Bell
  • 398
  • 1
  • 16