Hello Team,
I have one manupulated list of Category and I want to set this list as a single select options in Select list field on Radio button trigger using behaviour.
I tried to get basic details using below code :
Instead of that, you can use a Custom Picker field.
This would work. By the way, maybe it is because of the copy-pasting but check the following code; it seems the second if should be inside of the first if statement:
category -> if (category != null && category.getName() != null) {
if (category.getName().containsIgnoreCase("jagile")) {
categoryList.add(category.name)
}
}
Also, if you insist on using this kind of filtering; you need to store all options inside the field's possible values and then depend on the `categoryList` you should update this option list.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.