Closed (fixed)
Project:
Webform
Version:
6.x-3.6
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
10 Feb 2011 at 14:23 UTC
Updated:
24 Feb 2011 at 23:20 UTC
Hi
I am sending the form to a system that must receive specific input id names (salesforce CRM).
Can I control the input ids in WebForm?
For example, I need to put CAPS and names like "email" and not "edit-submitted-email"
Best regards.
Shay.
Comments
Comment #1
quicksketchNo you cannot do this in Webform. The "Form key" allows you to choose the individual element name (which is actually what gets submitted in POST, not the "id"), but it will always be inside the "submitted" parent, such as
$_POST['submitted']['myfield']. If you're looking to submit things to SalesForce through Webform, I'd suggest you also install SalesForce Webform or other similar projects.Comment #2
balaftuna commentedWonderful! Many thanks for your reply.