Retrieve date for textarea and select type in jsp
How to save and retrieve data to a textarea using jsp and jdbc connection....
For other input types like text there is value attribute which is entered as <%=value%>
But how is it done for textarea and comboboxes?
[236 byte] By [
febykadera] at [2007-11-27 11:39:11]

# 1
var val = document.getElementById('description').value;
<html:textarea property="description" style="width: 200px" />
form bean:combo:
private Collection values;
private String value;
<html:select property ="cntry" size="1" style="width: 200px">
<option value="" selected>All</option>
<html:optionsCollection property="countries" value="country" label="parentCountry"/>
</html:select>
for combo: javascript:
var selObj = document.getElementById('combo');
var selIndex = document.getElementById('combo').selectedIndex;
var val = selObj.options[selIndex].text;
skp71a at 2007-7-29 17:24:35 >
