2
text to image component attributes
(lemmy.world)
Thank you so much this helped a lot.
Is there a way to modify the lists dynamically? Let's say based on the value of a checkbox?
For example I have a checkbox to check or uncheck if the user wants to filter shirt options from the clothing dropdown. I've got something like this where I check the value of shirtOptions.checked and try to add an entry to the list if it's true and not if it's false.
clothes
label = Clothes?
type = select
options
Default = [{""}]
[if (shirtOptions.checked) {"T-Shirts = (T-shirt), (Tee-Sirt)"} else {""}]
Bicycle rider = (bicycle outfit), (cycling jersey), (bike shorts)
in the HTML part of course I have:
<input type="checkbox" id="shirtOptions" checked oninput="update()"/>
However, this is not creating an error in the source but does display "Syntax Error" in the drop down list.
Thank you so much. This put me on the right track. Ended up not being too bad. I used javascript on the website to futz with the list directly after it was created. Probably not the most ideal way to do this.
So what this does is shortly after the page loads runs through each option in the
settings.userInputs.artStyle.optionslist and looks to see ifnsfw = true. If so it adds adata-nsfwtag to the option entry itself on the html side. It then stores the entire option list inartStyleDropdown.When the checkbox is clicked the
toggleNSFWfunction runs. If the check box is ticked it displays all the entries that were initially saved when the page was loaded. If it's unticked it'll filter out any of the options withdata-nsfwset to true then assigns the resulting list back to the dropdown.For the newbies like me in the html side below the
data-name="artStyle"]is finding the drop down control related to the artStyle list. This should generally match the name of the list.Here's the javascript I used:
I added an entry in the list to tag which entries to show and hide. Here it's the nsfw = true/false. In this example I'm labeling anime as nsfw.