hi check out this code
Code:
<select name ="lstDescription" multiple onClick="fnGetSearchResult()"> <option value = 2>test </option>
<option value = 3>TestOnMay21 </option>
<option value = 4>testMay21_2 </option>
<option value = 5>testMay21_3 </option>
</select
now when i click on an option the code in the servlet written as
if(request.getParameter("lstDescription") == null)
System.out.println("it is null");
works indication that the data does not come, but if the 'onClick' is changed to 'onDblClick()' it works meaning it is not 'null'
could someone clarify this
thanks