CRM

miritest
Member

Radio and check Non-Hubstpot form

Hello Community,
I need to be able to join the radiobuttons and checkboxes with a non-Hubstpot form.
I can't identify how they work properly.
On radio button I have in the CMR
Yes and No.
In my HTML, how should I create it?
Same with the checkbox.

I need to use label, name, id?

Thank you.

0 Upvotes
2 Replies 2
alina1205
HubSpot Employee
HubSpot Employee

Radio and check Non-Hubstpot form

Hi Miritest, 

 

As per this article: 

 

all data submitted to non-HubSpot form fields will only match to single-line text field type properties in HubSpot. Non-HubSpot form fields cannot match with other field types.

 

Have you looked into an option to embed a HubSpot form

 

Kind regards, 

 

 

miritest
Member

Radio and check Non-Hubstpot form

Hi @alina1205 
Thanks for your response!
I ckeck the link.
I create one Radio select property in my non-Hubstpot form: https://knowledge.hubspot.com/contacts/property-field-types-in-hubspot
And actually i use Dropdown select perfectly, but i have problems for type="radio" and type="checkbox"

Example
Internal name is: digital_ads
Label --> No - Internal value--> false - with value --> 0

Label --> Yes - Internal value--> true - with value --> 2

 

<p>Please select ADS:</p>
<input type="radio" id="no_ads" name="digital_ads" value="false ">
<label for="digital_ads">No</label>


<input type="radio" id="yes_ads" name="digital_ads" value="true">
<label for="digital_ads">Yes</label><br>

0 Upvotes