hi,
im new to struts2..in my application i need to use that Struts2 concept..im developing jsp page..i had designed..drop-down box in jsp..if im doing validation it is not getting..and it is not getting validated..can any one help me out..
login.jsp
login.js
thanks in advance,
madhu.
im new to struts2..in my application i need to use that Struts2 concept..im developing jsp page..i had designed..drop-down box in jsp..if im doing validation it is not getting..and it is not getting validated..can any one help me out..
login.jsp
Code:
s:select name="Type" label="Type" headerKey="1" headerValue="-- Please Select --" list="#{'01':'News','02':'Jokes','03':'Astrology','04':'Weather', '05':'Traffic','06':'Sports','07':'Prayer'}" />
Code:
if (form.Type.selectedIndex < 0) { alert("Select \"Type\" options."); form.Type.focus(); return (false); }
madhu.
Comment