Hi,
I have a Telerik ComboBox, an ASP.NET TextBox, an ASP.NET RequiredFieldValidator(for TextBox), and a Button on an aspx form. At first, the ComboBox does work correctly and there is no problem, But, When I click on the button and my RequiredFieldValidator shows itself, then the ComboBox does not work. What's the problem?
I have a Telerik ComboBox, an ASP.NET TextBox, an ASP.NET RequiredFieldValidator(for TextBox), and a Button on an aspx form. At first, the ComboBox does work correctly and there is no problem, But, When I click on the button and my RequiredFieldValidator shows itself, then the ComboBox does not work. What's the problem?
4 Answers, 1 is accepted
0
Hello mohsen,
Could you please attach the code you are using so we can help you.
Thank you.
All the best,
Veronica Milcheva
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Could you please attach the code you are using so we can help you.
Thank you.
All the best,
Veronica Milcheva
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0

mohsen
Top achievements
Rank 1
answered on 14 Jun 2010, 06:49 PM
My code is as bellow:
<telerik:RadComboBox ID="RadCmbCastingType" runat="server" dir="rtl" Width="190px" |
TabIndex="3"> |
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
</telerik:RadComboBox> |
<asp:ImageButton ID="ImgInsert" runat="server" ImageUrl="~/App_Themes/SystemInfo/images/btn_save.gif" |
Style="height: 21px" TabIndex="12" CommandName="AddNew" /> |
0
Hi mohsen,
I've created a test project with the code you provided. Find it in the attached .zip file. At this moment RadComboBox is working fine. From the ticket info I see you are using Version 2010.1.519 of the RadControls. Can you confirm this?
If you continue to experience problems, please send me more info about your case.
Thank you.
Greetings,
Veronica Milcheva
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0

mohsen
Top achievements
Rank 1
answered on 16 Jun 2010, 07:07 AM
My problem has not been solved.
I'm using the following code to bind the RadComboBox control:
I'm using the following code to bind the RadComboBox control:
Rad.DataSource = BCastingType.GetAll(); |
Rad.DataValueField = "Id"; |
Rad.DataTextField = "Title"; |
Rad.DataBind(); |