form saved without name

acy277 13 Aug, 2008
Hi there,

I have used V3.0 beta 1 for my website. When I saved my customed design form, the form will be saved without name. I then tried to use Form Wizard but don't how to use my customed code there. then I tried to use the default item to test. It can save with form name this time though but when I was trying to add some javascript code in it, this problem happened again. I was getting so frastrated does anybody have any idea ?

Thanks in advanced.

Dennis
acy277 13 Aug, 2008
Also, when I put <input type="submit"> into the form, this error message appeared: element.getParent().getParent() has no properties, element.getParent().getParent().remove();
BTW, I have used table to construct my form. Is it a problem as well?

Cheers,
Dennis
Max_admin 13 Aug, 2008
Hi Dennis,

The submit button bug is known and fixed in BETA 2 and I'm trying to find about the form name bug which has been reported by some user, but are you sure that you had some name in the name field when this happened or you had it empty ? also which browser do you have ?
Max, ChronoForms developer
ChronoMyAdmin: Database administration within Joomla, no phpMyAdmin needed.
ChronoMails simplifies Joomla email: newsletters, logging, and custom templates.
acy277 13 Aug, 2008
My form worked fine on V2.5 RC3.1 and I am using FF 2.0.16. I didnt try it on IE though
beadsboy 26 Aug, 2008
same problem for me .. form saving without name ... also after inserting code it just wont save.

me also using table to make the form
Max_admin 26 Aug, 2008
Hi beadsboy,

please help us fix the issue, tell me which Chronoforms version do you have, paste your form HTML code here, and remove the HTML and try to save, does it save ?
Max, ChronoForms developer
ChronoMyAdmin: Database administration within Joomla, no phpMyAdmin needed.
ChronoMails simplifies Joomla email: newsletters, logging, and custom templates.
beadsboy 28 Aug, 2008
Hello,

Sorry i was out for couple of days .. I am a fan of chrono forms .. and all my website have it :-)

I am using Beta 2. Please again explain pasting and removing html code. I didnt understand the tip ..

Below is the complete code.
Table 1 is the Form
Table 2 is the code 'after email sending'
Table 3 is the Email Template.


<input name="emailsubject" type="hidden" id="emailsubject" value="Your form submission at ." />
        <input name="fromemail" type="hidden" id="fromemail" value="" />
    <input name="ccemail" type="hidden" id="ccemail" value="" />
    <input name="fromname" type="hidden" id="fromname" value="" />
  </p>
  <table width="461" border="0">
    <tr>
      <td colspan="3"><p><strong>Below is our contact Address :</strong></p>
        <p><img src="./images/M_images/arrow.png" width="9" height="9" /><strong>ABC</strong> <br />
            <img src="./images/M_images/con_address.png" width="16" height="16" /><strong>Office</strong>:<br>
          ABC...<br />
  <img src="./images/M_images/con_tel.png" width="16" height="16" /> 
          00<br />
  <img src="images/M_images/con_fax.png" width="16" height="16" />          00<br />
          <p><strong>Please don’t hesitate to contact us  (you can fill online form below or send a message to</strong>
      </td>
    </tr>
    <tr>
      <td width="158"><strong>Company Name</strong></td>
      <td width="54"><strong>:</strong></td>
      <td width="235"><label>
      <input name="comp" type="text" id="comp" size="35" />
      </label></td>
    </tr>
    <tr>
      <td><strong>Full Name</strong></td>
      <td><strong>:</strong></td>
      <td><label>
        <input name="name" type="text" id="name" size="35" />
      </label></td>
    </tr>
    <tr>
      <td><strong>Address</strong></td>
      <td><strong>:</strong></td>
      <td><textarea name="address" id="address" cols="30" rows="5"></textarea></td>
    </tr>
    <tr>
      <td><strong>City</strong></td>
      <td><strong>:</strong></td>
      <td><input name="city" type="text" id="city" size="35" /></td>
    </tr>
    <tr>
      <td><strong>Country</strong></td>
      <td><strong>:</strong></td>
      <td><input name="country" type="text" id="country" size="35" /></td>
    </tr>
    <tr>
      <td><strong>Email id</strong></td>
      <td><strong>:</strong></td>
      <td><input name="email" type="text" id="email" size="35" /></td>
    </tr>
    <tr>
      <td><strong>Tel no. 1</strong></td>
      <td><strong>:</strong></td>
      <td><input name="tel1" type="text" id="tel1" size="35" /></td>
    </tr>
    <tr>
      <td><strong>Tel no. 2</strong></td>
      <td><strong>:</strong></td>
      <td><input name="tel2" type="text" id="tel2" size="35" /></td>
    </tr>
    <tr>
      <td><strong>Fax no.</strong></td>
      <td><strong>:</strong></td>
      <td><input name="fax" type="text" id="fax" size="35" /></td>
    </tr>
    <tr>
      <td><strong>Mobile no.</strong></td>
      <td><strong>:</strong></td>
      <td><input name="mobile" type="text" id="mobile" size="35" /></td>
    </tr>
    <tr>
      <td><strong>Inquiry</strong></td>
      <td><strong>:</strong></td>
      <td><textarea name="inquiry" id="inquiry" cols="30" rows="5"></textarea></td>
    </tr>
    <tr>
      <td><strong>Your Profile</strong></td>
      <td><strong>:</strong></td>
      <td><textarea name="profile" id="profile" cols="30" rows="5"></textarea></td>
    </tr>
    <tr>
      <td>Security Image Spam Protection. Please enter letters you see in picture.</td>
      <td> </td>
      <td>{imageverification}</td>
    </tr>
    <tr>
      <td> </td>
      <td> </td>
      <td><input type="submit" name="submit" id="submit" value="Submit" /></td>
    </tr>
  </table>
  <table width="461" border="0">
    <tr>
      <td height="64" colspan="3"><p>Dear<strong> <?php echo $_POST['name']; ?></strong>,</p>
      <p>Thankyou for submitting online form at We have received the below details form you. We shall contact you ASAP.</p>
      </td>
    </tr>
    <tr>
      <td width="158"><strong>Company Name</strong></td>
      <td width="54"><strong>:</strong></td>
      <td width="235"><label><?php echo $_POST['comp']; ?></label></td>
    </tr>
    <tr>
      <td><strong>Full Name</strong></td>
      <td><strong>:</strong></td>
      <td><label><?php echo $_POST['name']; ?></label></td>
    </tr>
    <tr>
      <td><strong>Address</strong></td>
      <td><strong>:</strong></td>
      <td><?php echo $_POST['address']; ?> </td>
    </tr>
    <tr>
      <td><strong>City</strong></td>
      <td><strong>:</strong></td>
      <td><?php echo $_POST['city']; ?> </td>
    </tr>
    <tr>
      <td><strong>Country</strong></td>
      <td><strong>:</strong></td>
      <td><?php echo $_POST['country']; ?> </td>
    </tr>
    <tr>
      <td><strong>Email id</strong></td>
      <td><strong>:</strong></td>
      <td><?php echo $_POST['email']; ?> </td>
    </tr>
    <tr>
      <td><strong>Tel no. 1</strong></td>
      <td><strong>:</strong></td>
      <td><?php echo $_POST['tel1']; ?> </td>
    </tr>
    <tr>
      <td><strong>Tel no. 2</strong></td>
      <td><strong>:</strong></td>
      <td><?php echo $_POST['tel2']; ?> </td>
    </tr>
    <tr>
      <td><strong>Fax no.</strong></td>
      <td><strong>:</strong></td>
      <td><?php echo $_POST['fax']; ?> </td>
    </tr>
    <tr>
      <td><strong>Mobile no.</strong></td>
      <td><strong>:</strong></td>
      <td><?php echo $_POST['mobile']; ?> </td>
    </tr>
    <tr>
      <td><strong>Inquiry</strong></td>
      <td><strong>:</strong></td>
      <td><?php echo $_POST['inquiry']; ?> </td>
    </tr>
    <tr>
      <td><strong>Your Profile</strong></td>
      <td><strong>:</strong></td>
      <td><?php echo $_POST['profile']; ?> </td>
    </tr>
    <tr>
      <td height="221" colspan="3"><p><strong>Below is our contact Address :</strong></p>
        <p><img src="./images/M_images/arrow.png" width="9" height="9" /><strong>ABC</strong> <br />
            <img src="./images/M_images/con_address.png" width="16" height="16" /><strong>Office</strong>:<br />
          ABC...<br />
  <img src="./images/M_images/con_tel.png" width="16" height="16" /> 00<br />
  <img src="images/M_images/con_fax.png" width="16" height="16" /> 00<br />
        </p>
      <p><strong>Please don’t hesitate to contact us  (you can fill online form below or send a message to</strong></p></td>
    </tr>
</table>
<table width="461" border="0">
    <tr>
      <td height="64" colspan="3"><p>Dear <strong>{name}</strong>,</p>
        <p>Thankyou for submitting online form at We have received the below details form you. We shall contact you ASAP.</p>
      </td>
    </tr>
    <tr>
      <td width="158"><strong>Company Name</strong></td>
      <td width="54"><strong>:</strong></td>
      <td width="235"><label>{comp}</label></td>
    </tr>
    <tr>
      <td><strong>Full Name</strong></td>
      <td><strong>:</strong></td>
      <td><label>{name}</label></td>
    </tr>
    <tr>
      <td><strong>Address</strong></td>
      <td><strong>:</strong></td>
      <td>{address}</td>
    </tr>
    <tr>
      <td><strong>City</strong></td>
      <td><strong>:</strong></td>
      <td>{city}</td>
    </tr>
    <tr>
      <td><strong>Country</strong></td>
      <td><strong>:</strong></td>
      <td>{country}</td>
    </tr>
    <tr>
      <td><strong>Email id</strong></td>
      <td><strong>:</strong></td>
      <td>{email}</td>
    </tr>
    <tr>
      <td><strong>Tel no. 1</strong></td>
      <td><strong>:</strong></td>
      <td>{tel1}</td>
    </tr>
    <tr>
      <td><strong>Tel no. 2</strong></td>
      <td><strong>:</strong></td>
      <td>{tel2}</td>
    </tr>
    <tr>
      <td><strong>Fax no.</strong></td>
      <td><strong>:</strong></td>
      <td>{fax}</td>
    </tr>
    <tr>
      <td><strong>Mobile no.</strong></td>
      <td><strong>:</strong></td>
      <td>{mobile}</td>
    </tr>
    <tr>
      <td><strong>Inquiry</strong></td>
      <td><strong>:</strong></td>
      <td>{inquiry}</td>
    </tr>
    <tr>
      <td><strong>Your Profile</strong></td>
      <td><strong>:</strong></td>
      <td>{profile}</td>
    </tr>
    <tr>
      <td height="265" colspan="3"><p><strong>Below is our contact Address :</strong></p>
        <p><strong>ABC</strong> <br />
        <strong>Office</strong>:<br />
          <strong>Address :</strong>ABC...<br />
          <strong>Tel : </strong>00<br />
          <strong>Fax : </strong>00<br />
        </p>
        <p><strong>Please don’t hesitate to contact us at </strong></p>
      </td>
  </tr>
</table>
Max_admin 28 Aug, 2008
No worries, in your form code, here is the problem :

<input name="name" type="text" id="name" size="35" />


name="name"

make it something like name="fullname" until we fix this bug!

Cheers

Max
Max, ChronoForms developer
ChronoMyAdmin: Database administration within Joomla, no phpMyAdmin needed.
ChronoMails simplifies Joomla email: newsletters, logging, and custom templates.
beadsboy 15 Oct, 2008
Hello,

Above solution works .. Thankyou,

Devang
This topic is locked and no more replies can be posted.

VPS & Email Hosting 20% discount
hostinger