0

I'm using Seam 2.3 and i want to call a method action into a h:commandButton. When i click i can see a select query into the console but my method is never call.

<h:form id="form">
 <rich:panel id="panelInfoModif"  rendered="#{ClassAction.beanSelected()}">
    ...
    <h:commandButton value="Submit" action="#{ClassAction.submit()}" >
        <a:ajax execute="@this"></a:ajax>
    </h:commandButton>
  </rich:panel>             
</h:form>
Sebus
  • 47
  • 1
  • 1
  • 10
  • No exceptions? The name of the bean should start with lower-case letter. Also what is the ajax for? – Makhiel Jul 31 '13 at 08:56
  • No exceptions. Ok but its not the real name of my bean. if i remove ajax, i have the same result. – Sebus Jul 31 '13 at 13:30

1 Answers1

0

this answer contains a long list of things to check if your button is not working

Community
  • 1
  • 1
arved
  • 4,401
  • 4
  • 30
  • 53