You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by Apache Wiki <wi...@apache.org> on 2007/01/04 18:19:13 UTC

[Myfaces Wiki] Trivial Update of "JavascriptWithJavaServerFaces" by DannyVanBruggen

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Myfaces Wiki" for change notification.

The following page has been changed by DannyVanBruggen:
http://wiki.apache.org/myfaces/JavascriptWithJavaServerFaces

The comment on the change is:
onclick, not onClick

------------------------------------------------------------------------------
  {{{
  <h:form id=”userForm”>
      <h:commandLink id=”lnkDeleteUser” value=”delete” 
-             onClick=”if (!confirm('Are you sure you want to delete this record?')) return false”
+             onclick=”if (!confirm('Are you sure you want to delete this record?')) return false”
              action=”#{userBean.deleteUser}”/>
  </h:form>
  }}}