
Kristin Woodard
-
Activité totale26
-
Dernière activité
-
Membre depuis
-
Abonné à0 utilisateur
-
Abonnés0 utilisateur
-
Votes10
-
Abonnements6
Aperçu des activités
Dernière activité effectuée par Kristin Woodard-
Kristin Woodard a ajouté un commentaire,
Rebecca, With the new "Guide Manager" permissions in the agent profile toggled on, you can now allow your agents to view the forms in the guide using the url switch "preview_as_role=end_user" witho...
-
Kristin Woodard a ajouté un commentaire,
Daniel has a great point! For those that do not use conditional fields in their forms, the web widget is a completely viable option! Unfortunately, we use conditional fields heavily in order to mak...
-
Kristin Woodard a ajouté un commentaire,
Tyler, Try adding the following to the top of your "New Request Page" in your portal. It's not pretty (a dialog will pop up asking if you really wanted to be re-directed) but at least it stops the ...
-
Kristin Woodard a ajouté un commentaire,
Hi folks, I am following this thread since when I first began setting up my instance, I felt this would be a beneficial feature. While it would still be "handy" I have gone an alternate route for t...
-
Kristin Woodard a ajouté un commentaire,
We have utilized the "Preview as role = end user" URL switch, however, it requires the agent to have admin status on our Zendesk Instance. This switch is actually referring to the preview state an ...
-
Kristin Woodard a ajouté un commentaire,
Chris, You can use /n (New Line) in your string. Please see the "try it" at W3 Schools (my favorite resource) http://www.w3schools.com/js/js_strings.asp the section on "escape characters" should h...
-
Kristin Woodard a ajouté un commentaire,
@ Christopher - the document submit is already part of the process coded by the Zendesk Platform, you are basically just "hijacking it" and performing an action when the process kicks off, just as ...
-
Kristin Woodard a ajouté un commentaire,
I ended up getting this to work using the following: //Form Submit$(document).submit(function() { //only run on specific formif (window.location.href == "https://southlandind.zendesk.com/hc/en-us/r...
-
Kristin Woodard a ajouté un commentaire,
@Wes - I am trying to go a step further, and set the subject line using one of the field values in the form on submit. So far, I have gotten it to change the subject on submit, but I cannot get it ...
-
Kristin Woodard a ajouté un commentaire,
Wes, that is perfect! For those who might be trying to hide a required system field, remember that you will need to give it a value before hiding it! $('#request_subject').val("some subject here"...