Ron - Tuesday, October 12, 2010 9:41 AM:
Brian - Wednesday, October 13, 2010 6:59 AM:
Hi Ron,
The value of the filter list is what is saved to the item record (assuming it's a property) so if it is not available from the form element then it should be available in the AML going to the server. You could use an onAfterAdd to intercept it, edit the sequenced doc value and continue. It may even work to use an onBeforeAdd/Update so that you don't have to edit the record again.
At the very least you can examine what it is in the onBeforeAdd/Update events.
Cheers,
Brian.
Ron - Wednesday, October 13, 2010 10:46 AM:
Hi Brian
Ron - Wednesday, October 13, 2010 10:46 AM:
Hi Brian
After a little more searching in this forum I found the answer I needed. This worked for me.
var docprefix1 = "";
var docprefix = "";
docprefix1 =document.getElementsByName('doc_prefix');
docprefix=docprefix1[0].value;
Ron