Code:
<script type="text/javascript">
function dothis(form, field){
formname=form.name;
fieldname='CHARGEREQUEST.DEFAULT.CHARGE_TAGS.01';
document.formname.'CHARGEREQUEST.DEFAULT.CHARGE_TEXT_STYLE.01'.value += this.value + ' ';
}
</script>
I have tried different ways for this function to work without success. As I mentioned the form has been re-designed in Oracle Portal 9ias. The name of the drop down list is called 'CHARGEREQUEST.DEFAULT.CHARGE_TAGS.01. Can't change the name as it's automatically set. Wrapping '' around the text works for
Code:
fieldname='CHARGEREQUEST.DEFAULT.CHARGE_TAGS.01';
but not the last part. As always grateful for any advice.
I have also set the drop down list with
Code:
onChange="dothis(this.form,this)"
Bookmarks