Hi All
I have a prompt page in which i have couple of date prompts and a cascading value prompt on a different field.
For the date prompt i use the following javascript to change the default selection to blank
<script language="javascript">
document.forms["formWarpRequest"].elements["txtDatereceivedfromdate"].value='';
</script>
But when i select a date in my date prompt and then select a value in value prompt(cascading prompt) which is set to autosubmit the refreshed page does not have the dates selected.
I want those dates to still be selected even after the cascading prompt is submitted.
Thanks appreciate any help