최근 검색
최근 검색 없음

Simon Lee
가입한 날짜: 2021년 4월 15일
·
마지막 활동: 2021년 11월 01일
팔로잉
0
팔로워
0
총 활동 수
5
투표 수
0
플랜 수
3
활동 개요
배지
문서
게시물
커뮤니티 댓글
문서 댓글
활동 개요
님의 최근 활동 Simon Lee
Simon Lee님이 에 댓글을 입력함
Adding my 2 cents here. My use case is pretty simple - mark emails coming from this email address as urgent. This is for emails from alert or monitoring services, or VIPs, etc.
I'm hoping this is easy to implement since you already have string search for subject and comments.
댓글 보기 · 2020년 12월 18일에 게시됨 · Simon Lee
0
팔로워
2
투표 수
0
댓글
Simon Lee님이 에 게시물을 만듦
Hi everyone,
We had a requirement for our customers to send us particular documents when dealing with a certain type of request. The way we tackled this was to add a hint below the attachment field asking our customers for the required documents.
How it's done
This is done by editing the code in the script.js file.
Import jquery
If you're on templating API v2, you'll need to import jquery. Instructions are here.
Edit the script.js file
If you don't have it, you'll need to add the following code to the top of the script.js file.
$(document).ready(function(){
})
Within that function, add the following code, changing "Test hint" to whatever text you want to display.
$('div#upload-dropzone').parent().append('Test hint
')
This will create a new element at the bottom of the attachment field and give it the ID of attachment_field_hint. The ID comes in handy if you ever want to make changes to the hint based on conditions.
2020년 4월 22일에 게시됨 · Simon Lee
2
팔로워
15
투표 수
14
댓글