| Author |
getParameterMap and unselected checkboxes
|
Ken Clark
Greenhorn
Joined: Aug 02, 2004
Posts: 11
|
|
I'm processing information from a form in a servlet that consists of a table of data, each with a checkbox. Some are selected, and others are not. When I user getParameterMap() or getParameterNames(), I'm only getting data for those rows that have the checkbox selected (true). How do I also get the checkboxes that are no selected? Ken
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56554
|
|
|
You don't. Parameters for unselected checkboxes are not included in the HTTP request when the browser submits the form.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Bosun Bello
Ranch Hand
Joined: Nov 06, 2000
Posts: 1506
|
|
|
As Bear said, only selected parameters are sent as part of the request. But, since you know those that are selected, you can easily detemine those that are not right?
|
Bosun (SCJP, SCWCD)
So much trouble in the world -- Bob Marley
|
 |
 |
|
|
subject: getParameterMap and unselected checkboxes
|
|
|