Advertisement
| 10.12.2008 at 11:10PM PDT, ID: 23808663 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: |
function openSel8(selectFile1) {
var win=window.open(selectFile1,'Select','width='+0.8*screen.width+',height='+0.8*screen.height+
',resizable=1,location=0,toolbar=0,scrollbars=yes,top='+0.1*screen.height+',left='+0.1*screen.width);
win.focus();
}
if (type == "R") {
dealerhid = "<hsm name=xxDealerCd >";
alert(dealerhid);
//document.write('<input type="hidden" name="delaerhid1" value="' + dealerhid+ '" />');
form.action = openSel8('fin_InvoicePartRange.htm?DealerCd=<hsm name = xxDealerCd>'); }
if (type == "X") form.action = "Xxxx.hsm";
}
// AT this stage, the variable dealehid is displaying correct value.
In the child form,
function renderDate() // On Load Function for the child window
{
var dealer1 = window.parent.document.forms[0].elements['dealerhid'].value; // I tried other variations also.
alert(dealer1);
alert(DealerCd.value);
Both the above does not seem to work. Please advise.
All I need is to access the hidden variable in the parent or pass that value to teh child through the URL string as I tried.
Later on, I want to take this value back to the parent.
If anyone can provide a simple working example, I can take it from there.
|
Advertisement