
Kristin Woodard
-
총 활동 수26
-
마지막 활동
-
회원 가입일
-
내가 팔로우하는 사용자 수0명
-
나를 팔로우하는 사용자 수0명
-
투표 수10
-
플랜 수6
활동 개요
Kristin Woodard님의 최근 활동-
Kristin Woodard님이 에 댓글을 입력함
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님이 에 댓글을 입력함
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님이 에 댓글을 입력함
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님이 에 댓글을 입력함
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님이 에 댓글을 입력함
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님이 에 댓글을 입력함
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님이 에 댓글을 입력함
@ 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님이 에 댓글을 입력함
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님이 에 댓글을 입력함
@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님이 에 댓글을 입력함
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"...