The idea of the database is that the user per Location can add many different Products that are being manufactured by Companies.
But, I’ve run into a problem concerning the form builder and lookups. It would be very handy if when a user wants to add a product to a location, also the company name can be seen. If I add a lookup for the Product.ID in the form builder, I can’t access the name of the company, only Product.company_ID and this is not very readable.
I would like a kind of ‘nested’ lookup possibility; a lookup inside another lookup. Or, another way of structuring the database that would make this possible.
Thank you for a great plugin!
]]>This may be something already covered in the Pro version, but I may just be confused by the wording. I saw on the Premium version features this line which may be what I’m asking for:
Assign contact to any object in salesforce.
I’m trying to use this plugin for web form to cases (using the API). When a case is made, I’d like to check for the Salesforce ContactId by Email or ContactId by Username (custom field)
Is this possible in the free version or does it require the paid version?
]]>I just got the premium version. I want to ass additional fields to wp users table. I tried to design new table to include all additional fields. and added a field of user ID to link to wp_users table.
I could not make the lookup to enter the data in the new table.
Please help.
]]>I run a charity and we have a membership spreadsheet containing Title, First Name, Last Name, Door Number, Street name, postcode, email address etc.
I wish to create a donation form where once an unique field is typed in (e.g. postcode), the form will automatically populate the other fields <span style=”text-decoration: underline;”>if the information is already in the membership spreadsheet</span>.
Is this possible with Forminator?
A different plug-in called Formidable has this function.
Thank you.
]]>I’m new to the plugin.
I created a custom form to create new contacts.
In this form, I want to display a dropdown list for contacts to choose their nationality.
I get the list of nationalities via a FetchXML query that I display in the select tag.
The nationality field in the crm is linked to an entity, emn_nationalite.
In the contact entity, the nationality field is called “emn_nationalite_id”.
In the entity nationality, the ID is in the field “emn_nationalite_id” and the name of the nationality corresponds to the field “emn_name”.
The contact is created well when I submit the form but the nationality field remains empty in the CRM.
How can I ensure that the nationality is correctly transmitted to the CRM?
Here is my code:
[msdyncrm_twig]
{% form entity="contact" mode="create" required=["lastname", "emailaddress1", "description"] %}
<form method="POST">
<label for="firstname">First Name:</label>
<input name="firstname" required="" placeholder="First Name">
<label for="lastname">Last Name:</label>
<input name="lastname" required="" placeholder="Last Name">
<label for="mobilephone">Phone Number:</label>
<input name="mobilephone" type="tel" placeholder="Phone Number">
<label for="emailaddress2">email:</label>
<input name="emailaddress2" type="tel" placeholder="email">
<label for="nationalite">Nationalité:</label>
<select name="emn_nationalite_id">
{% for a in nartionality.results.entities %}
<option value ="{{a.emn_nationaliteid}}">{{a.emn_name}}</option>
{% endfor %}
</select>
<button type="submit">Submit</button>
</form>
{% endform %}
[/msdyncrm_twig]
]]>I’m trying to add this function in a forminator form. Is this possible please using forminator?
The end product should look like this which I have created using the Formidable plug-in but prefer to achieve with Forminator.
]]>