最近の検索


最近の検索はありません

Josh Keller's Avatar

Josh Keller

参加日2021年4月16日

·

前回のアクティビティ2024年10月25日

Zendesk Luminary

フォロー中

0

フォロワー

1

合計アクティビティ

32

投票

8

受信登録

14

アクティビティの概要

さんの最近のアクティビティ Josh Keller

Josh Kellerさんがコメントを作成しました:

コメントEnd users and organizations

Pleeeeeease tell us that the API for merging organizations is coming soon. This isn't very useful for large Zendesk customers until we can do this via API.

コメントを表示 · 投稿日時:2023年11月06日 · Josh Keller

0

フォロワー

1

投票

0

コメント


Josh Kellerさんがコメントを作成しました:

コメントGeneral questions about email and email template

Thank you, Lisa Setford. Sadly we already have Personalized email replies disabled. We just opened a ticket with Zendesk about this--hopefully they can help us get this sorted. Thanks again, though!

コメントを表示 · 投稿日時:2023年9月06日 · Josh Keller

0

フォロワー

1

投票

0

コメント


Josh Kellerさんがコメントを作成しました:

コメントGeneral questions about email and email template

So much agreement here. This is a security issue. We're also seeing agent's full names exposed, though it's not consistent.

コメントを表示 · 投稿日時:2023年9月06日 · Josh Keller

0

フォロワー

0

投票

0

コメント


Josh Kellerさんがコメントを作成しました:

コミュニティのコメント Discussion - Tips and best practices from the community

Can anyone advise if this is accessibility/WCAG-compliant?

コメントを表示 · 投稿日時:2023年4月26日 · Josh Keller

0

フォロワー

0

投票

0

コメント


Josh Kellerさんがコメントを作成しました:

コメントDeveloper updates

I've found the following to manage app sizing pretty well:

function resize_app() {
    let el = document.getElementsByTagName('body')[0];
    let height = el.offsetHeight;
    let style = getComputedStyle(el);
    height += parseInt(style.marginTop) + parseInt(style.marginBottom) + 10;
    client.invoke('resize', { width: '100%', height: height });
}

function debounce(func, timeout=250) {
    let timer;
    return (...args) => {
        clearTimeout(timer);
        timer = setTimeout(() => { func.apply(this, args); }, timeout);
    };
}

window.addEventListener('load', debounce(resize_app));
window.addEventListener('resize', debounce(resize_app));

The 250ms debounce delay might be excessive, but it's helpful since we have so many apps competing against each other for resources.

I found the additional 10 (pixels) added to the height was necessary, though I don't really understand why since I think the full height should be accounted for by parsing the body element.

コメントを表示 · 編集日時:2022年1月27日 · Josh Keller

0

フォロワー

0

投票

0

コメント


Josh Kellerさんがコメントを作成しました:

コミュニティのコメント Feedback - Help Center (Guide)

This sounds like a fun, moderately sized project using Guide APIs. Not that it wouldn't be great for ZD to offer this capability out-of-the-box, but don't let that hold you back.

コメントを表示 · 投稿日時:2021年10月21日 · Josh Keller

0

フォロワー

0

投票

0

コメント


Josh Kellerさんがコメントを作成しました:

コメントExplore recipes

The "Ticket skills" attribute seems to return all skills that were ever applied to the ticket. How can we get only the currently-applied ticket skills?

コメントを表示 · 投稿日時:2021年3月16日 · Josh Keller

0

フォロワー

4

投票

0

コメント


Josh Kellerさんがコメントを作成しました:

コミュニティのコメント Feedback - Ticketing system (Support)

コメントを表示 · 投稿日時:2020年10月15日 · Josh Keller

0

フォロワー

2

投票

0

コメント


Josh Kellerさんがコメントを作成しました:

コミュニティのコメント Feedback - Help Center (Guide)

Thanks @... for this slick code. Very much appreciated!

コメントを表示 · 投稿日時:2020年1月06日 · Josh Keller

0

フォロワー

0

投票

0

コメント


Josh Kellerさんがコメントを作成しました:

コミュニティのコメント Q&A - Users, groups, and organizations

Thanks so much, Nicholas! Nice work and greatly appreciated.

コメントを表示 · 投稿日時:2019年9月16日 · Josh Keller

0

フォロワー

0

投票

0

コメント