HTL Javascript API Dependencies not working | Community
Skip to main content
Level 2
May 15, 2019
Solved

HTL Javascript API Dependencies not working

  • May 15, 2019
  • 2 replies
  • 1344 views

Hi,

I am going by this AEM documentation for adding "Dependencies" in HTL Javascript file. HTL JavaScript Use-API .

This is how I am trying to access dependent js file.

When I add dependency i.e. MyUtils.js file in my javascript I get below error:

org.apache.sling.scripting.sightly.SightlyException: javax.script.ScriptException: Failure running script /apps/social/samples/components/mainmastertemplate/mainmastertemplate.js: Required script resource could not be located: ./MyUtils.js. The caller is /apps/social/samples/components/mainmastertemplate/mainmastertemplate.js

What's the correct way to access "Dependencies" in HTL js file?

Regards,

Ganesh

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by arunpatidar

Hi,

Can you try with use(['MyUtils.js'], function(utils))

if doesn't work, give the complete path from /apps/.....MyUtils.js

2 replies

arunpatidar
Community Advisor
arunpatidarCommunity AdvisorAccepted solution
Community Advisor
May 15, 2019

Hi,

Can you try with use(['MyUtils.js'], function(utils))

if doesn't work, give the complete path from /apps/.....MyUtils.js

Arun Patidar
Level 2
May 15, 2019

Thank you Arun. It works now