Hi Shane,
I just figured it out. I had this:
| <h:form>
| <button onclick="javascript:sayHello()">Say Hello</button>
| </h:form>
|
After staring at that for awhile, I decided to do this:
| <h:form>
| <h:commandButton type="button" value="Say hello..."
| onclick="sayHello();"/>
| </h:form>
|
Which works. Alternatively, I can take the original button out of the h:form and that also
works.
Thanks for taking the time to help me out.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3990837#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...