Custom field value change event

Answered


Posted Aug 08, 2022

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
 

0

7

7 comments

Ok Eric Nelson Thanks for the confirmation.

0


Hey Ram,

Blur isn't an event type that is available to the apps framework. 
 
Thanks

0


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);
});

0


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. 

0


Eric Nelson

can we bind BLUR event? is that possible?

0


Eric Nelson

I am wondering why I am not able to find this.
Thanks!

0


Hey Ram,

We have a method that you can hook into for this exact purpose. You can find the documentation here.

Thanks!

0


Sign in to leave a comment.

Didn't find what you're looking for?

New post