
Kristin Woodard
-
Total activity27
-
Last activity
-
Member since
-
Following0 users
-
Followed by0 users
-
Votes10
-
Subscriptions7
Activity overview
Latest activity by Kristin Woodard-
Kristin Woodard commented,
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 commented,
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 commented,
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 commented,
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 commented,
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 commented,
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 commented,
@ 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 commented,
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 commented,
@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 commented,
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"...