We want to have a drop down of 'equipment types'. This is a fairly big
list so we would like to lazy load it. The issue we are having is if we
do lazy load you can't restrict what they type.
Is there some kind of work around to get AllowCustomText =false with load on demand?
Is there some kind of work around to get AllowCustomText =false with load on demand?
4 Answers, 1 is accepted
0
Hi Boone,
Regards,
Simon
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
You can achieve this by handling the client-side Load event of the RadComboBox as shown below:
function
onLoad(sender) {
sender.get_inputDomElement().readOnly =
"readonly"
;
}
Simon
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0

Boone
Top achievements
Rank 2
answered on 03 Dec 2009, 07:56 PM
That removes a key piece of functionality though. We still want the google like suggestions that show up.
If we have a list of chevy, ford, gmc, dodge and type ch in the drop down, the chevy should be the only one in the list.
If we have a list of chevy, ford, gmc, dodge and type ch in the drop down, the chevy should be the only one in the list.
0

Schlurk
Top achievements
Rank 2
answered on 03 Dec 2009, 08:42 PM
I believe this article can help you out a bit :)
0
Hello Boone,
You can also use the second approach described in this help article.
All the best,
Simon
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
All the best,
Simon
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.