Hi!!!
Pls help me regarding chronoforms i have developed two forms using this extension as i am new to joomla and to website designing i have been facing some issues regarding the form.
here is the simple HTML code which i have generated :
here is the code for it :
I have seen all the previous postings and cross checked the setting too but not able to fix it.
I am using joomla version :1.0.12
add: http://www.helix-hr.com
page add where i am using form is here
Pls find enclosed herewith screen shot for the settings which i have been using under general tab.
Thanks & Regards
Pragya
Edited to add tags and to break up long lines.<br><br>Post edited by: GreyHead, at: 2008/02/05 16:06
Pls help me regarding chronoforms i have developed two forms using this extension as i am new to joomla and to website designing i have been facing some issues regarding the form.
here is the simple HTML code which i have generated :
<form
name='candidates'
action='submission '
method='POST'
enctype='multipart/form-data'
onsubmit='return verifyMe();'
action="mailto:«»pragya.shukla@imarketingadvantage.com">
<table class='table_form_1' id='table_form_1' cellspacing='0'>
<tr>
<td class='ftbl_row_1' >
<LABEL for='name' ACCESSKEY='none' >
<b style='color:red'>*</b>Name
</td>
<td class='ftbl_row_1a' >
<input type='text' name='name' id='name' size='45' maxlength='70' value=''>
</td>
</tr>
<tr>
<td class='ftbl_row_2' >
<LABEL for='domain' ACCESSKEY='none' >
<b style='color:red'>*</b>Domain specialisation
</td>
<td class='ftbl_row_2a' >
<select name='domain' id='domain'>
<option value='Finance'>Finance</option>
<option value=' HR'> HR</option>
<option value=' Sales & Marketing '> Sales </option>
<option value=' Consulting '> Consulting </option>
<option value=' Research '> Research </option>
<option value=' IT '> IT </option>
<option value=' Others '> Others </option>
</select>
</td>
</tr>
<tr>
<td class='ftbl_row_1' >
<LABEL for='exp' ACCESSKEY='none' >
<b style='color:red'>*</b>Years of exp
</td>
<td class='ftbl_row_1a' >
<input type='text' name='exp' id='exp' size='45' maxlength='10' value=''>
</td>
</tr>
<tr>
<td class='ftbl_row_2' >
<LABEL for='clocation' ACCESSKEY='none' >
<b style='color:red'>*</b>current location
</td>
<td class='ftbl_row_2a' >
<input type='text' name='clocation' id='clocation' size='45' maxlength='50' value=''>
</td>
</tr>
<tr>
<td class='ftbl_row_1' >
<LABEL for='plocation' ACCESSKEY='none' >
<b style='color:red'>*</b>Preferred location
</td>
<td class='ftbl_row_1a' >
<input type='text' name='plocation' id='plocation' size='45' maxlength='50' value=''>
</td>
</tr>
<tr>
<td class='ftbl_row_2' >
<LABEL for='ccompany' ACCESSKEY='none' ><b style='color:red'>*</b>Current company
</td>
<td class='ftbl_row_2a' >
<input type='text' name='ccompany' id='ccompany' size='45' maxlength='50' value=''>
</td>
</tr>
<tr>
<td class='ftbl_row_1' >
<LABEL for='tel' ACCESSKEY='none' ><b style='color:red'>*</b>Contact no
</td>
<td class='ftbl_row_1a' >
<input type='text' name='tel' id='tel' size='45' maxlength='12' value=''>
</td>
</tr>
<tr>
<td class='ftbl_row_2' >
<LABEL for='email' ACCESSKEY='none' ><b style='color:red'>*</b>Email id
</td>
<td class='ftbl_row_2a' >
<input type='text' name='email' id='email' size='45' maxlength='50' value=''>
</td>
</tr>
<tr>
<td class='ftbl_row_1' >
<LABEL for='resume' ACCESSKEY='none' >
<b style='color:red'>*</b>Upload C.V
</td>
<td class='ftbl_row_1a' >
<input type='file' name='resume' id='resume' size='50' value=''>
</td>
</tr>
<tr>
<td colspan='2' align='right'>
<input type='submit' name='submit' value='Submit'>Â
<input type='reset' name='reset' value='Reset'><br />
</td>
</tr>
</table>
</form>
and a i have added the required java script function too in it. here is the code for it :
function verifyMe(){
var msg='';
if(document.getElementById('name').value==''){
msg+='- Name\n\n';}
if(document.getElementById('domain').value==''){
msg+='- Domain specialisation \n\n';}
if(document.getElementById('exp').value==''){
msg+='- Years of exp\n\n';}
if(document.getElementById('clocation').value==''){
msg+='- current location\n\n';}
if(document.getElementById('plocation').value==''){
msg+='- Preferred location\n\n';}
if(document.getElementById('ccompany').value==''){
msg+='- Current company\n\n';}
if(document.getElementById('tel').value==''){
msg+='- Contact no\n\n';}
var email=document.getElementById('email').value;
if(!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(email))){
msg+='- Invalid Email Address: '+email+'\n\n';}
if(document.getElementById('email').value==''){
msg+='- Email id\n\n';}
if(document.getElementById('resume').value==''){
msg+='- Upload C.V \n\n';}
if(msg!=''){
alert('The following fields are empty or invalid:\n\n'+msg);
return false
}else{
return true }
}
but i am not able to receive the emails on the specified email add i hv tried al the possible settings but couldn't trace out the reason. Pls pls give you valuable feedback regarding it and help me to resolve the issue.
I have seen all the previous postings and cross checked the setting too but not able to fix it.
I am using joomla version :1.0.12
add: http://www.helix-hr.com
page add where i am using form is here
Pls find enclosed herewith screen shot for the settings which i have been using under general tab.
Thanks & Regards
Pragya
Edited to add tags and to break up long lines.<br><br>Post edited by: GreyHead, at: 2008/02/05 16:06