Application Studio: Slide out panel checkbox not defaulting to 'false'

In 2025.2, I am editing the quote entry application, and I am trying to make the Duplicate quote slide out checkbox “Copy Attachments” to be empty when the slide out is opened. Here is the value that I am attempting to change:

I have tried a few things to do this. First I made an after on load event to do a row update on CopyQuoteLineOptions.CopyAttachments and set the value to be false. This did not work, so I tried a before on load event and that did not work either.

Then, I searched for ‘duplicate’ in the event search to see if there was something related to the duplicate quote feature, and I found “OnClick_toolQuoteHedDuplicate”. I made a before and after event for this event in the same style as the onload event, but neither worked. What am I doing wrong? My guess is that I am not putting in the correct EpBinding, but I have no idea what else to put in.

I tried an After event as well, and it doesn’t fire until you close the slide out panel.

Instead, you can Copy the existing OnClick_toolQuoteHedDuplicate event

Set the trigger to override the base event…

Then update the row-update widget within the event to set “CopyAttachments” to false.

This approach worked for me.

4 Likes

This worked perfectly, thanks for the help!

1 Like