Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
I'm not familiar with HM's webhook, but if you are familiar with JavaScript, you can use FlowBoost instead. The community license is free for up to 100k calls/month. It's way more powerful because you can do pretty much anything with it that you can accomplish with JS including calling other remote ...
Hey Sandy, I've discovered an issue with this if one of the fields is managed by Visibility Rules (e.g. State). If I include "State" in one of the ziManagedFields, I get this error:If I remove State from that array, but still have it on the form, I this error:If I remove the Visibility Rule, everyth...
@SanfordWhiteman Any ideas on how to scalably translate any rich text included in a form? It doesn't look it's possible to give those a name, and it comes through in the descriptor like this:[ { "Id": 29708, "Name": "HtmlText_2019-09-16T14:03:23.709Z", "Datatype": "htmltext...
I know this was an old issue, but it is still occurring today. I was able to "fix" this through the UI by changing the field type from Checkbox to Select and back again. Once I saved after that, the input was there. I'm going to create a case with Marketo support to get this bug fixed.
Correct, but I'm only changing the value programmatically if it is already stored in a token or present in the hash, and the session language is set prior to the form load (in order to determine what language to load everything in)--in which case it would be equal to the value I'm setting, and I wou...
Thanks Sandy. Good heads up on the Array.includes. I ended up using Array.prototype.indexOf. While it isn't supported prior to IE9, they decided they didn't need to support older versions.I also took your advice on the variable name--definitely likely to cause some headaches...For anyone else lookin...
Well, I thought I'd be clever and use a hash to override the language preference using this:var supportedLangs = ["English","Chinese","Japanese","Korean","Spanish","Portuguese","French","German","Polish","Italian"];var hash = location.hash.substring(1);var langpref;if(supportedLangs.includes(hash)){...
The language preference is a newly-introduced concept for this global company, so everything will default to English until users begin selecting their preferences. I'd like to be able to translate the whole page again if the user selects a new language preference, but I suppose I could force a page ...
I've got this working on the initial page load, but I'm not sure how to re-render the form if a user changes their language preference (a dropdown field on the form). I tried attaching an event listener to the field, which runs the function, but the descriptor is undefined and I'm not sure how to ac...
Where does this translate function get placed? I'm also confused because you've defined a translateMktoDescriptor function in the sample code, but then there's also a translateMktoForm function that doesn't seem to be defined. I'm also curious how to handle translating select list option labels. I'm...