Custom field value change event
답변함I am working on Zedesk server side App, There is a orderno custom filed in ticket form.
what i want to achieve is, get value of orderno when its value got changed.
Previously, I have achieve something similar as following.
if (client) {
client.on('ticket.requester.name.changed', function(e) {
console.log("e === > ", e);
});
}
Please guide me how i can get custom filed value when it changes
-
Hey Ram,
We have a method that you can hook into for this exact purpose. You can find the documentation here.
Thanks!
-
Eric Nelson
I am wondering why I am not able to find this.
Thanks! -
can we bind BLUR event? is that possible?
-
Hey Ram,
You can bind a blur event to elements within the application. Anything that falls outside the iframe of the app, may be possible though most likely won't be stable.
-
Eric Nelson
I mean, can we bind ".bind" instead ".changed" in zendesk ticket filed ?something like below
client.on('ticket.requester.name.blur', function(e) {
console.log("e === > ", e);
}); -
Hey Ram,
Blur isn't an event type that is available to the apps framework.
Thanks
-
Ok Eric Nelson Thanks for the confirmation.
댓글을 남기려면 로그인하세요.
7 댓글