Javas script 'fabrik.form.submit.start' doesn't work in 3.1

dealio

Member
I've been using the form submit start function perfectly fine until I upgraded.

its been working fine until I upgraded to fabrik 3.1

I'm now running fabrik 3.1rc2 on joomla 3.2


I have several 'fabrik.form.submit.start" but none of them work now.
/public_html/components/com_fabrik/js/form_12.js

========================================
Fabrik.addEvent('fabrik.form.submit.start', function (form) {

alert('Start Save');
//Check radio button if set to self of nothing then clear the fields before saving.
var CertificationServed = jQuery('input[name="xforce_mod_content___crt_serveby[]"]:checked').val();
alert(CertificationServed);
if (CertificationServed =='' || CertificationServed =='self')
{
jQuery('#xforce_mod_content___ordr_serv_fname').val('');
}
else{
}
});
=====================================
The above was working fine before upgrading.

I've tried with fabrik 3.1rc1 and rc2 (joomla 3.2)

thanks
 
Back
Top