Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Ricardo Sala
16,211 PointsGetting the list of checked checkboxes! :)
In Spark, with Java I am doing a blog.
In a form, how can I get the checked values in a form where all the checkboxes share the same name?
I thought I would get a list of the values but somehow I am only getting the first one...
My html:
<li th:if="${entry.tags}" th:each="tag,iterStat : ${entry.tags}">
<input
type="checkbox"
name="tags"
th:value="|tag-${iterStat.count}|"
th:checked="true"
th:text="${tag}">
</li>
and in the controller I am doing:
String editedTags = request.queryParams("tags");
But I am only getting the value of the first checked one, only one...
I've read that I should get them with queryParams
method as a String separated by commas...but that 's not the case, I am only receiving the first one
2 Answers

Seth Kroger
56,407 PointsThe name attribute of each checkbox will need to be different if you want to send the values of each one of them. Otherwise with only one name there is only one value sent.

Ricardo Sala
16,211 PointsBut the checkboxes are generated dinamically (one checkbox for each entry tag, and I do not know how many entry tags the user will enter)...
Isn't there to call all the checkboxes the same? after all, they are all the same: tags!
And I would swear I have seen it done just with one name...
Like here: https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_form_checkbox

Seth Kroger
56,407 PointsOK, after a bit of research it looks like you should use queryParamsValues() instead of queryParams() since it returns an a String[] instead of a single String.