commandLink « Form « JSF Q&A





1. Could h:commandLink not submit a form?    stackoverflow.com

Here I have one column in my h:dataTable that is <h:commandLink> and it should redirect to another page which is for editing the current row. So that is why I need ...

2. h:commandLink not firing the form.submit event    stackoverflow.com

When my page is loaded I execute the following JS script, which I use to display a popup saying (please wait...) when any form is submitted.

jQuery(function(){
  jQuery("form").submit(function(){jQuery('#wait-link').trigger('click');return true;});
});
This works fine ...