Hello
I have one combobox,
i want to fill the value of combobox through xml lookup not through dbookup.
the default value of the combobox should be the
Hello
I have one combobox,
i want to fill the value of combobox through xml lookup not through dbookup.
the default value of the combobox should be the
Subject: combobox and xmllookup
Are you doing this on the net or on the notes client?
Subject: RE: combobox and xmllookup
on web!!!
Subject: RE: combobox and xmllookup
Write some javascript to parse a view looked up by readviewentries using xmlhttprequest()
examples below…
Subject: RE: combobox and xmllookup
I am having the code,:-(but i was expecting the place where i can put them…
Thanks a ton
dev
Subject: RE: combobox and xmllookup
if your combobox has id xyz then do…
var y=document.getElementById(‘xyz’);
…
get values using readview entries… then loop doing
…
y.options[i] = new Option(‘new text’,‘new value’);
…
hth
adam.