hello, i would like to make my radcombo:
<telerik:RadComboBox runat="server" ID="caserappr" AllowCustomText="true" EnableLoadOnDemand="true">
<WebServiceSettings Method="GetRepresentedCompanyFrom" Path="~/DesktopModules/Expo.Blox/CRM/ComboWebService.asmx" />
</telerik:RadComboBox>
appear as a normal textbox, so that user cannot see the button on the right side.
my webservice will populate the combo-list as suggestions.
Thanks a lot
Rudy
<telerik:RadComboBox runat="server" ID="caserappr" AllowCustomText="true" EnableLoadOnDemand="true">
<WebServiceSettings Method="GetRepresentedCompanyFrom" Path="~/DesktopModules/Expo.Blox/CRM/ComboWebService.asmx" />
</telerik:RadComboBox>
appear as a normal textbox, so that user cannot see the button on the right side.
my webservice will populate the combo-list as suggestions.
Thanks a lot
Rudy
6 Answers, 1 is accepted
0
Shinu
Top achievements
Rank 2
answered on 19 Jan 2009, 11:45 AM
Rudy,
Add the below CSS for hiding the dropdown button in RadComboBox. Hope this helps you.
CSS:
Thanks,
Shinu.
Add the below CSS for hiding the dropdown button in RadComboBox. Hope this helps you.
CSS:
<style type="text/css"> |
.RadComboBox_Default td.rcbArrowCell |
{ |
width:0px !Important; |
} |
</style> |
Thanks,
Shinu.
0
Rudy
Top achievements
Rank 1
answered on 19 Jan 2009, 11:52 AM
thanks... i just wanted to know this: ShowToggleImage="false"
<telerik:RadComboBox runat="server" ID="caserappr" AllowCustomText="true" EnableLoadOnDemand="true" ShowToggleImage="false">
<WebServiceSettings Method="GetRepresentedCompanyFrom" Path="~/DesktopModules/Expo.Blox/CRM/ComboWebService.asmx" />
</telerik:RadComboBox>
thanks
Rudy
<telerik:RadComboBox runat="server" ID="caserappr" AllowCustomText="true" EnableLoadOnDemand="true" ShowToggleImage="false">
<WebServiceSettings Method="GetRepresentedCompanyFrom" Path="~/DesktopModules/Expo.Blox/CRM/ComboWebService.asmx" />
</telerik:RadComboBox>
thanks
Rudy
0
suresh kumar
Top achievements
Rank 1
answered on 07 May 2010, 09:50 AM
Thanks a lot for your posting.
That's really helped us a lot.
Thanks once again.
Regards,
Suresh Kumar Udatha.
That's really helped us a lot.
Thanks once again.
Regards,
Suresh Kumar Udatha.
0
shaji kunjumon
Top achievements
Rank 1
answered on 27 Sep 2012, 05:28 AM
Hello,
But this style leaves the right side border of the combobox empty.
image attached.
But this style leaves the right side border of the combobox empty.
image attached.
0
Shinu
Top achievements
Rank 2
answered on 27 Sep 2012, 06:28 AM
Hi,
Try setting ShowToggleImage property of RadCombobox to false to achieve your scenario.
ASPX:
Thanks,
Shinu.
Try setting ShowToggleImage property of RadCombobox to false to achieve your scenario.
ASPX:
<
telerik:RadComboBox
ID
=
"rcb_Users"
Runat
=
"server"
ShowToggleImage
=
"false"
>
<
Items
>
..............
</
Items
>
</
telerik:RadComboBox
>
Thanks,
Shinu.
0
shaji kunjumon
Top achievements
Rank 1
answered on 27 Sep 2012, 10:46 AM
Thanks.. that worked well.