This is a migrated thread and some comments may be shown as answers.

ShowToggleImage doesn't look like working as expected!

2 Answers 86 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
r00tsecurity
Top achievements
Rank 1
r00tsecurity asked on 29 Mar 2009, 05:32 PM
Hi,
My company is trying to use radcontrols trial Q1 2009.
Since we use radcombobox as to be seem like textbox ( like exactly the search box in http://demos.telerik.com/aspnet-ajax/combobox/examples/functionality/textwithicons/defaultcs.aspx), we couldn't successfuly dissappear toggle image ( the down image that opens radcombo)

I guess ShowToggleImage can hide this image..
More clear screenshot is : http://img31.imagevenue.com/img.php?image=48143_ShowToggleImage_fault_122_650lo.JPG

If anyone knows how to do that pls explain me

best regards

2 Answers, 1 is accepted

Sort by
0
Accepted
Princy
Top achievements
Rank 2
answered on 30 Mar 2009, 05:23 AM

Hello,

I tried the scenario and found that the dropdown image is not disappearing even after setting the ShowToggleImage property to false. So I tried adding style as shown below for hiding the dropdown image. Can you try the CSS and see whether it working for you?

CSS:

<style type="text/css">   
.RadComboBox_Default td.rcbArrowCell   
{   
     width:0px !Important;   
     border-right1px solid #CCCCCC !important;  
}       
</style>  

ASPX:
<telerik:radcombobox id="RadComboBox1" AllowCustomText="true" Skin="Default" runat="server" MarkFirstMatch="true">  
<Items> 
    <telerik:RadComboBoxItem Text="Item1" /> 
    <telerik:RadComboBoxItem Text="Item2" /> 
</Items>          
</telerik:radcombobox> 

Thanks,
Princy.

 

0
r00tsecurity
Top achievements
Rank 1
answered on 30 Mar 2009, 07:11 AM
The css trick is working as exactly as I want.
Thank you Princy


PS telerik has to correct the issue for "ShowToggleImage"
Tags
ComboBox
Asked by
r00tsecurity
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
r00tsecurity
Top achievements
Rank 1
Share this question
or