Ask Your Question
4

How can I eliminate options within a select field that is positioned inside a FieldList?

asked 2022-09-11 11:00:00 +0000

lalupa gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2021-04-25 11:00:00 +0000

woof gravatar image

To eliminate options within a select field that is positioned inside a FieldList, you can use JavaScript or jQuery code. Here's an example using jQuery:

// Find the select field inside the FieldList var selectField = $('select[name="my_select_field"]'); // Loop through the options and remove the ones that you don't want selectField.find('option').each(function() { var option = $(this); if (option.val() === 'option1' || option.val() === 'option3') { option.remove(); } }); 

In this example, we're finding a select field with the name "myselectfield" and then removing options with the values "option1" and "option3". You can adjust the values or criteria in the if statement to match your specific use case.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-09-11 11:00:00 +0000

Seen: 10 times

Last updated: Apr 25 '21