I have the following Multicolumn Combobox on my page:
The 1st column contains a telephone number. I would like to format it so it actually looks like one. I figured I could do it in the _ItemDataBound event, but I can't quite figure it out?
<telerik:RadComboBox ID="ddlLineNum" runat="server" DataValueField="all_line_id" DataTextField="line_number" Width="250px" Skin="Windows7" HighlightTemplatedItems="True" DropDownWidth="290px" AutoPostBack="True"> <ItemTemplate> <table border="0" cellpadding="0" cellspacing="0"> <tr> <td style="width: 75px;"> <%#DataBinder.Eval(Container.DataItem, "line_number")%> </td> <td style="width: 200px; padding-left: 5px;"> <%#DataBinder.Eval(Container.DataItem, "line_description")%> </td> </tr> </table> </ItemTemplate> </telerik:RadComboBox> The 1st column contains a telephone number. I would like to format it so it actually looks like one. I figured I could do it in the _ItemDataBound event, but I can't quite figure it out?