I have a child browser window (aspx) opened from the parent application. The child window has some controls, and a textbox. When the user is finished, s/he clicks a button and the following code takes the value from the child window and populates the parent, like so:

window.opener.document.form1.InputContainer$LetterInput$txtReasons.value = txtVal;

This works great for the textbox I have on the parent page. But now, I need to populate a listbox and am not having much luck. I've tried these two methods but to no avail:

o.text = txtVal;
o.value = "1";
window.opener.document.form1.InputContainer$LetterInput$lstReasons.add(o);

window.opener.document.form1.InputContainer$LetterInput$lstReasons.add("Text", "Value");

I get "htmlfile: No such interface supported" with both.

Anybody have any ideas?

Thanks,

Jason

link|improve this question

feedback

2 Answers

var newOption = document.createElement('option');
newOption.value = textbox.value; // The value that this option will have
newOption.innerHTML = textbox.value; // The displayed text inside of the <option> tags

// Finally, add the new option to the listbox
window.opener.document.form1.InputContainer$LetterInput$lstReasons.appendChild(newOption);
link|improve this answer
No luck on that one -- still getting "No such interface supported". But seriously, thanks for posting! – Jason Jul 20 '11 at 17:10
window.opener.document.getElementById('InputContainer_LetterInput_lstReasons').a‌​ppendChild....... – Samir Adel Jul 20 '11 at 19:10
feedback
up vote 0 down vote accepted

Okay, took a little reworking but found a solution!

First off, create a function in the parent aspx like this:

function NewOption(newVal)
{
//alert("The entry is: " + newVal);
var sel = document.getElementById("<%= MyListbox.clientID %>");
sel.options[sel.options.length]=new Option(newVal, newVal, true, true);    
}

Then, call that function from the child page like this:

function SendValues()
{
var txtVal = document.form1.txtReasons.value;
var sel = window.opener.NewOption(txtVal);
}

There's still a kink or two (it only passes the text, not the value) but it that can be easily fixed by adding an extra parameter...

Hopefully someone else out there can use it!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.