Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×I don't seem to be able to find how to do this anywhere, I've tried adding a new aui-option to the datalist but even though the new option does appear on the list it won't be there when you search for it by writing on the input field.
Is there some way to do this?
There's no way to add a new option programatically (yet). You could use the async version and back it with a rest resource which could provide more results.
Alternatively you can add the "can-create-values" attribute to the element, and then set it's value to something. It will appear as a special option in the list with "(new value)" after it.
I may be misunderstanding the question here, but a single-select list's options are determined by data in the database. Aui has nothing to do with that, it's for the front-end. They're not related to each other.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'll try to explain here, I'm following the first example in (https://docs.atlassian.com/aui/latest/docs/single-select.html), the synchronous one. When I write the options on the template like that it works fine, but I want to be able to add or remove options afterwards since they should change depending on what the user chooses on another field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah, ok, so you already have the list from the database and you just want to remove (or re-add) existing options. I'm afraid I don't know javascript well enough to help you there.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.