<
telerik:RadComboBox
Filter
=
"Contains"
runat
=
"server"
ID
=
"cmbTechnicalServicePerson"
Width
=
"420px"
MarkFirstMatch
=
"true"
DataSourceID
=
"DSGetTechnicalServicePerson"
EnableLoadOnDemand
=
"true"
HighlightTemplatedItems
=
"true"
OnClientItemsRequested
=
"UpdateItemCountField"
OnDataBound
=
"cmbTechnicalServicePerson_DataBound"
OnItemDataBound
=
"cmbTechnicalServicePerson_ItemDataBound"
LabelWidth
=
"100"
Label
=
"Technical Service Name:"
Skin
=
"Office2010Black"
Style
=
"position: absolute; top: 310px; left: 21px; z-index: 6500; height: 16px;"
Text
=
"Select a Value"
TabIndex
=
"3"
>
<
HeaderTemplate
>
<
ul
>
<
li
class
=
"col1"
>Name</
li
>
<
li
class
=
"col2"
>Position</
li
>
<
li
class
=
"col2"
>Unit</
li
>
</
ul
>
</
HeaderTemplate
>
<
ItemTemplate
>
<
ul
>
<
li
class
=
"col1"
>
<%# DataBinder.Eval(Container.DataItem, "[FULLNAME]")%></
li
>
<
li
class
=
"col2"
>
<%# DataBinder.Eval(Container.DataItem, "Position")%></
li
>
<
li
class
=
"col3"
>
<%# DataBinder.Eval(Container.DataItem, "[Department]")%></
li
>
</
ul
>
</
ItemTemplate
>
<
FooterTemplate
>
A total of
<
asp:Literal
runat
=
"server"
ID
=
"RadComboItemsTCount"
/>
items
</
FooterTemplate
>
</
telerik:RadComboBox
>
This is how my combo box set up in aspx page
I wanted to select the value from combo box using vb.net it select the value but the selected text will always “Select a Value” which is default value.
This is how I am change the selected value inside the code
Me.cmbTechnicalServicePerson.SelectedValue = DRProjectDetailsinfo.Item("TechnicalServicePerson")
Or Me.cmbTechnicalServicePerson.SelectedValue = 12551
But it is not selecting the text any idea
Thanks
Syed