Matias Bonifacino
07/11/2022, 12:40 PMcontext.form.clientScriptModulePath = 'xxxxx'
replaces other scripts?Mike Robbins
07/11/2022, 1:36 PMMatias Bonifacino
07/11/2022, 1:37 PMMike Robbins
07/11/2022, 1:37 PMMatias Bonifacino
07/11/2022, 1:38 PMMatias Bonifacino
07/11/2022, 1:38 PMMarwan
07/11/2022, 3:40 PMMike Robbins
07/11/2022, 5:14 PMcontext.form.clientScriptModulePath
, or the id
version, you assigning a value to the `clientScriptModulePath`property. If you use that code again to add an additional client script in the same user event script, you're overwriting the previous value assigned to that property with the new value. Essentially, only the last script mentioned gets loaded in the browser. That's what we found out while migrating scripts from 1.0 to 2.1 last week.Marwan
07/11/2022, 5:38 PM