Hi Albert,
Unfortunately what I suggested isn't working for me now that I try to help further. It *should* be working, so maybe this weekend I'll have time to figure it out as it's a personal challenge now :-).
But to answer your question, here is how a RadComboBox renders.
<
div
style
=
"width:60px;"
class
=
"RadComboBox RadComboBox_Default"
id
=
"ctl00_cphContentAjax_rcbUnitStructure"
>
<
table
style
=
"border-width: 0pt; border-collapse: collapse;"
summary
=
"combobox"
class
=
"rcbFocused"
>
<
tbody
>
<
tr
>
<
td
class
=
"rcbInputCell rcbInputCellLeft"
style
=
"width:100%;"
>
<
input
type
=
"text"
tabindex
=
"5"
value
=
"Select..."
id
=
"ctl00_cphContentAjax_rcbUnitStructure_Input"
class
=
"rcbInput"
name
=
"ctl00$cphContentAjax$rcbUnitStructure"
autocomplete
=
"off"
>
</
td
>
<
td
class
=
"rcbArrowCell rcbArrowCellRight"
>
<
a
style
=
"overflow: hidden;display: block;position: relative;outline: none;"
id
=
"ctl00_cphContentAjax_rcbUnitStructure_Arrow"
>select</
a
>
</
td
>
</
tr
>
</
tbody
>
</
table
>
<
input
type
=
"hidden"
name
=
"ctl00_cphContentAjax_rcbUnitStructure_ClientState"
id
=
"ctl00_cphContentAjax_rcbUnitStructure_ClientState"
autocomplete
=
"off"
value
=
"{"logEntries":],"value":"","text":"","enabled":true,"checkedIndices":[]}"
>
</
div
>
<
div
style
=
"z-index: 6000; visibility: visible; display: block; overflow: visible; margin-left: 0pt; position: absolute; top: 306.5px; left: 671.25px; height: 142px; width: 60px;"
class
=
"rcbSlide"
>
<
div
style
=
"display: block; visibility: visible; top: 0pt; left: 0px; width: 58px;"
class
=
"RadComboBoxDropDown RadComboBoxDropDown_Default "
id
=
"ctl00_cphContentAjax_rcbUnitStructure_DropDown"
>
<
div
style
=
"height: 120px; width: 100%; overflow: auto;"
class
=
"rcbScroll rcbWidth"
>
<
ul
style
=
"list-style:none;margin:0;padding:0;zoom:1;"
class
=
"rcbList"
>
<
li
class
=
"rcbItem "
>BU</
li
>
<
li
class
=
"rcbItem "
>EU</
li
>
<
li
class
=
"rcbItem "
>OU</
li
>
<
li
class
=
"rcbItem "
>UA</
li
>
<
li
class
=
"rcbItem "
>UD</
li
>
<
li
class
=
"rcbItem "
>WU</
li
>
</
ul
>
</
div
>
</
div
>
</
div
>
rcbItem is the class name of each LI that makes up the dropdown of the RadComboBox. Basically that jQuery selector was finding the last item in the RadComboBox and attaching the click event (well, trying to, anyway) to that LI.
Hopefully Telerik has a better answer to tide you over until I have time to look into this further.
Thad