manojmane29
Forum Replies Created
-
@alexacrm It is a premium feature or the comes with the free connector.
Forum: Plugins
In reply to: [Dataverse Integration] form submissions with reCAPTCHA@alexacrm Sorry not able to attached the SS .please refer the below error message.
“Failed to submit the form.
Cannot read property isSuccessful of null”The above error message we get when we enable the reCaptcha and try to submit the form.
Forum: Plugins
In reply to: [Dataverse Integration] Link Entity Data@alexacrm Okay but how can i read the alias entity attribute value ? Can you please share the syntax format.
Thanks,
ManojForum: Plugins
In reply to: [Dynamics 365 Integration] Map lookup Field@alexacrm So the values will be GUID of the recordid and name will be the schema value correct ?
Forum: Plugins
In reply to: [NSFW] [Dynamics 365 Integration] Optionset and MultiSelect option set field@alexacrm Thanks got it. It’s working now. thanks for the great support.
Forum: Plugins
In reply to: [NSFW] [Dynamics 365 Integration] Optionset and MultiSelect option set field@alexacrm Still not able to update the option set values
Below is the sample twig tag :<label for=”Referral Source”>Referral Source</label>
<select name=”Referral Source” id=”Referral Source”>
<option value=”814760000″>Facebook</option>
</select>Forum: Plugins
In reply to: [NSFW] [Dynamics 365 Integration] Optionset and MultiSelect option set field@alexacrm I am badly stuck for the Option Set field can you please help ASAP.
Forum: Plugins
In reply to: [NSFW] [Dynamics 365 Integration] Optionset and MultiSelect option set field@alexacrm Yes. And this is a custom form. Can you please provide me with the sample code ?
Forum: Plugins
In reply to: [NSFW] [Dynamics 365 Integration] Optionset and MultiSelect option set field@alexacrm Please refer the code as below:-
{% form entity=”contact” mode=”create” required=[“lastname”, “emailaddress1”, “description”] %}
<form method=”POST”>
<input name=”firstname” required placeholder=”First Name”>
<input name=”lastname” required placeholder=”Last Name”>
<label for=”av_whydoyouwanttovolunteer”>Why do you want to volunteer ?</label>
<select id=”av_whydoyouwanttovolunteer”>
<option value=”772350000″>Volvo</option>
<option value=”772350001″>Saab</option>
<option value=”772350002″>Opel</option>
<option value=”772350003″>Audi</option>
</select>
<button type=”submit”>Submit</button>
<input type=”hidden” name=”_key” value=”{{form.key}}”>
</form>
{% endform %}Forum: Plugins
In reply to: [NSFW] [Dynamics 365 Integration] Optionset and MultiSelect option set field@alexacrm No option set fields are also not getting mapped with the CRM can you check the above tag which I mentioned in the main thread. Is anything I am missing over hear ?
Forum: Plugins
In reply to: [NSFW] [Dynamics 365 Integration] Optionset and MultiSelect option set field<label for=”LOGICAL_NAME_OF_FIELD_FROM_dYNAMICS”>Connection Type ?</label>
<select id=”LOGICAL_NAME_OF_FIELD_FROM_dYNAMICS”>
<option value=”772350000″>Volvo</option>
<option value=”772350001″>Saab</option>
<option value=”772350002″>Opel</option>
<option value=”772350003″>Audi</option>
</select>