Simon Biggs
Simon Biggs
Make it so the component selector only works if it is a sub child of a top level scriptedform element. That scriptedform element must contain within it a reference to...
I think all I would do is make it so that the file is placed in a temp directory that can be accessed within python. How does that sound?
Can you elaborate on the 'post result of processing to db' step? Will that need anything on the ScriptedForms end? I had been thinking of a way to create sections...
Actually, thinking further, it would be better to have it be just the following: ~~~markdown ```python code that sends results to db written here ``` ~~~ Just make it so...
I wouldn't assume any code within the form is truly hidden. You could use the scriptedforms API to run the following code: ```python filename = 'robins-template-with-credentials.md' with open(filename, 'r') as...
That's a good candidate for a yaml metadata file. Just don't think you can hide the contents of any file on or accessible by the host server from the user...
Hi @robmarkcole, What did I need to do for this issue again?
Yup, okay. So if I make the ability to make custom buttons that should solve this.
I imagine other features might be to pass variables through to display contents or something of that sort, or even have the contents occur multiple times based off of a...
Variable passing might work by having a parameter `variables` which takes a dictionary. The keys of the dictionary can then be used within curly brackets like so: {{dictionary_key}} A for...