The geolocation tag has both an id and name attribute. The name is supposed to be used to submit the value in the post, and can be used for bean binding. The tag is rendering the id for the name and not using the name at all.
A bit of legacy from the JSF javascript. The id is required by the javascript for finding the rendered attribute and the name should be supported for Spring JSP. I was experimenting with trying to remove one of these attributes and forgot to redo it. Unfortunately, at this point they're both required.
Greg Dick
added a comment - - edited A bit of legacy from the JSF javascript. The id is required by the javascript for finding the rendered attribute and the name should be supported for Spring JSP. I was experimenting with trying to remove one of these attributes and forgot to redo it. Unfortunately, at this point they're both required.
A bit of legacy from the JSF javascript. The id is required by the javascript for finding the rendered attribute and the name should be supported for Spring JSP. I was experimenting with trying to remove one of these attributes and forgot to redo it. Unfortunately, at this point they're both required.