I have a enabled DropDownAutoWidth on my combobox but it seems to stay fixed width. As you can see in the snapshot attached, the description in the last column word wraps instead of extending all the way. Am I missing some settings?
Thank you,
Helen
<
asp:Label
ID
=
"Label8"
runat
=
"server"
Width
=
"100px"
Style
=
"padding-left:22px"
Text
=
"Market:"
/>
<
telerik:RadComboBox
ID
=
"RadMarketComboBox"
runat
=
"server"
Width
=
"80px"
Height
=
"150px"
DataSourceID
=
"SqlDataSourceMarket"
DataTextField
=
"market_cd"
DataValueField
=
"market_cd"
EnableScreenBoundaryDetection
=
"true"
DropDownAutoWidth
=
"Enabled"
HighlightTemplatedItems
=
"true"
MarkFirstMatch
=
"true"
SelectedValue='<%# DataBinder.Eval(Container, "DataItem.market").ToString().Trim() %>' >
<
HeaderTemplate
>
<
table
>
<
tr
>
<
td
class
=
"col1"
>Market</
td
>
<
td
class
=
"col2"
>Desc</
td
>
</
tr
>
</
table
>
</
HeaderTemplate
>
<
ItemTemplate
>
<
table
>
<
tr
>
<
td
class
=
"col1"
>
<%# DataBinder.Eval(Container.DataItem, "market_cd") %>
</
td
>
<
td
class
=
"col2"
>
<%# DataBinder.Eval(Container.DataItem, "market_desc") %>
</
td
>
</
tr
>
</
table
>
</
ItemTemplate
>
</
telerik:RadComboBox
>
<
asp:SqlDataSource
ID
=
"SqlDataSourceMarket"
runat
=
"server"
ConnectionString="<%$ ConnectionStrings:OSS %>"
SelectCommand="SELECT rtrim(ltrim(market_cd)) as market_cd, rtrim(ltrim(market_desc)) as market_desc, market_id
FROM market
ORDER BY market_cd">
</
asp:SqlDataSource
><
br
/>
Thank you,
Helen