Hi,
I want to know if it's possible from a popup to add Option on a Select
object on the parent, by just calling the Select object like this :
var openerForm = window.top.open er.document.for ms[0];
opt = new Option(theLabel , theValue,false, false);
openerForm.mySe lect.options[i] = opt;
Or maybe I must use another way by passing the option like a string on an
hidden field an evaluate this string ?
Thanks for your help
Kevin
//--------------------------------------------------
Kevin Auch
MVP .NET
CodeWise Community Member
----------------------------------------------------//
I want to know if it's possible from a popup to add Option on a Select
object on the parent, by just calling the Select object like this :
var openerForm = window.top.open er.document.for ms[0];
opt = new Option(theLabel , theValue,false, false);
openerForm.mySe lect.options[i] = opt;
Or maybe I must use another way by passing the option like a string on an
hidden field an evaluate this string ?
Thanks for your help
Kevin
//--------------------------------------------------
Kevin Auch
MVP .NET
CodeWise Community Member
----------------------------------------------------//
Comment