Hi @steftriant,
All your questions come down to the custom scripts, so I’ll guide you through that first:
You download the libraries and place them in the app/tasklist/scripts
directory of your webapp. Then you add them in the app/tasklist/scripts/config.js
. Here is an example how you would add JQuery:
customScripts: {
ngDeps: [], // can be left empty
deps: ['jQuery'], // The variable which you use to reference the library
paths: {
'jQuery': 'scripts/jquery-XXX' // The filename without .js
}
}
The library is then available for use in Tasklist and embedded forms. You might need to do a hard refresh (ctrl+F5 in chrome) to see the changes.
If this does not solve your question, let me know.
KR
Martin