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

Enter Custom Text That Is Substring of Text in Items

1 Answer 56 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Richard M
Top achievements
Rank 1
Richard M asked on 21 Oct 2010, 03:59 PM
I use load on demand to load items into the combo box, however, the user can select one of those items OR enter custom text.   See the attached screen shot.   When I tab off the control, it auto selects the first matching value, even with MarkFirstMatch = false.

So if I have "ABCD" as an item in the drop down, I can add "ABB" or anything that differs, but I can not add "ABC" for example because it will just fill in the text.   It actually has "" has it's selected value when this happens, but the text is changed.   The change happens client side before reaching any code in the code behind.

OnClientItemsRequesting
simply cancels the request if less than 3 chars are typed, example from the knowledge base.

<telerik:RadComboBox ID="rcbOrganizationName" Runat="server"                   
           OnSelectedIndexChanged="RcbOrganizationNameSelectedIndexChanged"
    OnItemsRequested="RcbOrganizationNameItemsRequested"
    OnClientItemsRequesting="OnClientItemsRequesting"
    EnableLoadOnDemand="true"
    AllowCustomText="True"
    AutoPostBack="True"
    EmptyMessage="Choose"
    MarkFirstMatch="false"
    EnableItemCaching="true"
    CausesValidation="false"
    TabIndex="2"                     
    ShowMoreResultsBox="false" 
    MaxLength="50"
    MaxHeight="300px"
    Width="250px">
</telerik:RadComboBox >

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 27 Oct 2010, 08:41 AM
Hi Richard,

The Load on Demand modes demo seems to exhibit the behavior that you need. Please, see this video capture - http://screencast.com/t/xgNyEhOYP and let me know if this is what want to achieve?


All the best,
Peter
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
Tags
ComboBox
Asked by
Richard M
Top achievements
Rank 1
Answers by
Peter
Telerik team
Share this question
or