Question may seem very basic! how can we handle muti-select box while processing a form.... i.e. for html select box we just get the value like #attributes.selectName# but how will we take values for multiple select List ?
Just like you do a single select list: #scope.selectName#. (Though it is usually #form.selectName#) Multiple selections are passed as a single comma delimited list. So say you selected three items from a list, on your action page the value might be: #form.selectName# = "apples,pears,oranges"