-
Re: static webresource is not getting file update is not reflecting in UI
The URL of CountryRegion.json is incorrect, as visible in the browser console: Based on your chosen structure for static resources you need to set: var countryurl = '/local/static/JS/JSON/CountryRegi…1 · -
Re: static webresource is not getting file update is not reflecting in UI
Hi, By design, static resources are not meant to be dynamically updated. I suggest using a DSS managed folder to store this JSON file and perform read/write operations from your webapp. I invite you …1 · -
Re: how to access http://mymachine:10000/public/api/projects/
Hi, Authentication on the Dataiku REST API is done via the use of API keys: https://doc.dataiku.com/dss/latest/publicapi/rest.html#authentication. Hope it helps, Alex1 · -
Re: DSS project from webapp
In Python 2, unicode strings are prefixed by "u": https://docs.python.org/2/howto/unicode.html. In Python 3, there is no prefix, since there is a built-in str type which is stored as unicod…1 · -
Re: Choose a folder in project creation macro
Hi, You are correct, to achieve your goal, you need to use a a SELECT parameter with getChoicesFromPython (see this documentation). You can use the Interactive Decision Tree Builder Plugin as an exam…1 ·