Events not triggered in New ticket Page

Hi Team,

We have a public app called Hide Fields App, this app runs in background on following locations

  • New Ticket Page

  • Ticket Details Page

  • New Email Page

On the appActivate function we have configured to listen for the following events:

  • ticket.customFieldChanged
  • ticket.statusChanged
  • ticket.priorityChanged
  • ticket.groupChanged
  • ticket.agentChanged
  • ticket.typeChanged
  • ticket.nextTicketClick
  • ticket.previousTicketClick
  • ticket.productChanged
  • ticket.propertiesUpdated

The platform is not triggering any of the events mentioned above during the initial load of New Ticket Page.

We can set rules in the app settings and make some fields hidden, even though the rules are matched in the initial load in New Ticket Page the fields are not hidden since the event itself is not triggered.

Kindly let us know if you had faced similar challenges and if possible solution/workaround for this.

So, does it happen on a fresh reload of the New Ticket page?

@Saif yes, it happens on an initial load/refresh of the New Ticket page. The event will only get triggered once the user changes the ticket properties.

1 Like

Appreciate an update on this.

I will take a shot at this.

There are two aspects of the platform -

#1

await app.initialized()

and

#2

await client.events.on("app.activated", configureEvents) // configureEvents is dev defined logic

Well, #1 invokes your JS code when the browser loads the entire Freshdesk Page. However, #2 invokes your JS only when the user action associated to the placeholder is performed.

From docs

In your case, your logic about registering events doesn’t need to interact with data in the page. Did you try wrapping your logic with #1?

Hi @Saif

We tried app.initialized() option as well, but it didn’t help.

I spoke with the engineering team. Right now, the change events are not triggered in the new ticket and new email page load, it only triggers when the value gets changed either by a user or template.

We did a workaround to set the status and priority values with default values on the app.activated() to forcefully trigger the property change events on the new ticket and new email page.

This approach seems to be working properly as of now.

1 Like

Understood.

Do you think developers would appreciate it if there’s documentation (is it clear, already?) or a wiki article that states this?

This topic was automatically closed 6 days after the last reply. New replies are no longer allowed.