J
JFB
Hi all,
This is crazy...
The name of my dropdownlist on the ascx page is:
nameOfMyControl_DropDownListName
Like:
contactWebUserControl_DropDownList2
Now I put my ascx in sharepoint and the name is :
<select
name="Left:g_708f9018_c320_46a1_bb9c_ebb3b67b8184:_ctl0ropDownList2"
id="Left_g_708f9018_c320_46a1_bb9c_ebb3b67b8184__ctl0_DropDownList2"
I have a fuction in java to catch this name as:
var drop2 = document.getElementById("contactWebUserControl_DropDownList2");
How can I do it now??
Tks
JFB
This is crazy...
The name of my dropdownlist on the ascx page is:
nameOfMyControl_DropDownListName
Like:
contactWebUserControl_DropDownList2
Now I put my ascx in sharepoint and the name is :
<select
name="Left:g_708f9018_c320_46a1_bb9c_ebb3b67b8184:_ctl0ropDownList2"
id="Left_g_708f9018_c320_46a1_bb9c_ebb3b67b8184__ctl0_DropDownList2"
I have a fuction in java to catch this name as:
var drop2 = document.getElementById("contactWebUserControl_DropDownList2");
How can I do it now??
Tks
JFB