I have the following radcombobox setup:
<
telerik:RadComboBox
ID
=
"cbChannel2"
runat
=
"server"
DropDownWidth
=
"200px"
HighlightTemplatedItems
=
"True"
Width
=
"200px"
DataTextField
=
"sle_chnl_cd"
DataValueField
=
"sle_chnl_id"
AutoPostBack
=
"True"
AppendDataBoundItems
=
"True"
>
<
HeaderTemplate
>
<
table
cellpadding
=
"1"
cellspacing
=
"0"
class
=
"Main"
width
=
"190px"
>
<
tr
>
<
td
class
=
"ComboHeader2"
width
=
"50px"
style
=
"text-align: left; visibility: visible;"
><
b
>Code</
b
>
</
td
>
<
td
class
=
"ComboHeader2"
width
=
"140px"
style
=
"text-align: left; visibility: visible;"
><
b
>Description</
b
>
</
td
>
</
tr
>
</
table
>
</
HeaderTemplate
>
<
ItemTemplate
>
<
table
cellpadding
=
"1"
cellspacing
=
"0"
class
=
"Main"
width
=
"190px"
>
<
tr
>
<
td
width
=
"50px"
style
=
"text-align: left; visibility: visible;"
>
<%#DataBinder.Eval(Container.DataItem, "sle_chnl_cd")%>
</
td
>
<
td
width
=
"140px"
style
=
"text-align: left; visibility: visible;"
>
<%#DataBinder.Eval(Container.DataItem, "sle_chnl_name")%>
</
td
>
</
tr
>
</
table
>
</
ItemTemplate
>
</
telerik:RadComboBox
>
Sometimes I have to add an additional row after the combobox has already been DataBound. I understand how to add a radcomboboxitem what I don't understand is how to add one such that "sle_chnl_name" actually gets a value? How do I add a row that's contained in a dataset without losing the data that's already been loaded?