최근 검색
최근 검색 없음

Renato Lyke
가입한 날짜: 2021년 5월 13일
·
마지막 활동: 2021년 10월 27일
팔로잉
0
팔로워
0
총 활동 수
9
투표
1
플랜 수
4
활동 개요
배지
문서
게시물
커뮤니티 댓글
문서 댓글
활동 개요
님의 최근 활동 Renato Lyke
Renato Lyke님이 에 댓글을 입력함
Hi Wes,
How could i assign multiple categories to a single icon. For example i have a categories called IOS, Andriod and Windows. I would like to assign this to a single icon called Mobile Platform. Is this possible with humble squid.
Regards, Renato.
댓글 보기 · 2015년 5월 04일에 게시됨 · Renato Lyke
0
팔로워
0
투표 수
0
댓글
Renato Lyke님이 에 댓글을 입력함
Hi,
How do we set a ticket form for an end-user using JS in Help Center based on the tag associated with the user. I was able to do this in Classic Web Portal.
Below is the code that i have tried. I am able to select the form, however it does not load. I have compared this with Classic web portal and in Help Center a data url has been added.
var external_form_id = "4639";
var internal_form_id = "4945";
var general_form_id = "3485";
function requestFormProductSupportModifications(formid) {
$("#request_issue_type_select").val(formid);
$("select#request_issue_type_select").change();
$("select#request_issue_type_select").attr("disabled","disabled");
$("label:contains('Please choose the ticket type')").hide();
$("select#request_issue_type_select").hide();
$("h1:contains('Submit a request')").after('The information collected on this screen will enable us to address your request faster. Appreciate your time in providing all the information.');
}
$(document).ready(function() {
// social share popups
$(".share a").click(function(e) {
e.preventDefault();
window.open(this.href, "", "height = 500, width = 500");
});
var cust_tags = HelpCenter.user.tags;
var formid ="";
if(location.pathname == "/hc/en-us/requests/new" || location.pathname == "/hc/en-us/requests") {
if(cust_tags = "kony_internal"){
formid=internal_form_id;
}
else {
formid=external_form_id;
}
requestFormProductSupportModifications(formid);
}
I am unable to load the form fields. I used the a similar code in Classic Web portal it worked.
Regards,
Renato.
댓글 보기 · 2014년 12월 19일에 게시됨 · Renato Lyke
0
팔로워
0
투표 수
0
댓글