Hello,
I work with vs 2008 and IE8.
I have a simple RadComboBox with a button.
If I tape a text in my RadComboBox, when I click on the button, the RadComboBox still always empty.
Code aspx :
Code VB :
Someone can see where is the problem, please ?
Anne
I work with vs 2008 and IE8.
I have a simple RadComboBox with a button.
If I tape a text in my RadComboBox, when I click on the button, the RadComboBox still always empty.
Code aspx :
<table> <tr> <td> <telerik:RadComboBox ID="RcmbPref" runat="server" DataSourceID="ds_pref" AutoPostBack = "true" AllowCustomText="true" DataTextField="IDFavori" DataValueField="IDFavori" Skin="WebBlue" MarkFirstMatch="True"> </telerik:RadComboBox> </td> <td width="6px"> </td> <td> <asp:ImageButton ID="ImgBtn_pref" runat="server" ImageUrl="../Gen_Images/favorites_add.png" ToolTip="Ajouter une préférence d'affichage" /> </td> </tr> </table>
<
asp:SqlDataSource ID="ds_pref" runat="server"
ConnectionString="<%$ ConnectionStrings:CsAppli %>"
SelectCommand="SELECT IDFavori FROM t_preferenceRadGrid WHERE (IDApplication = 'CEC') AND (IDSection = 'listeCL') ORDER BY IsCurrent DESC"></asp:SqlDataSource>
Code VB :
Private Sub ImgBtn_pref_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles ImgBtn_pref.Click Dim sNomPref As String = "" sNomPref = RcmbPref.Text End SubSomeone can see where is the problem, please ?
Anne