Package net.rim.device.api.ui.component

Examples of net.rim.device.api.ui.component.AutoCompleteField


                            "November", "December" };
            filteredListMonths.addDataSet(0, months, "Month",
                    BasicFilteredList.COMPARISON_IGNORE_CASE);

            // Create AutoCompleteFields
            final AutoCompleteField autoCompleteFieldContacts =
                    new AutoCompleteField(_filteredListContacts,
                            AutoCompleteField.LIST_STATIC
                                    | AutoCompleteField.LIST_DROPDOWN);
            final AutoCompleteField autoCompleteFieldMedia =
                    new AutoCompleteField(filteredListMedia,
                            AutoCompleteField.LIST_STATIC
                                    | AutoCompleteField.LIST_SHOW_DATA_SET_NAME
                                    | AutoCompleteField.LIST_DROPDOWN);
            final AutoCompleteField autoCompleteFieldMonths =
                    new AutoCompleteField(filteredListMonths,
                            AutoCompleteField.LIST_STATIC
                                    | AutoCompleteField.LIST_DROPDOWN);

            // Add the AutoCompleteFields to the screen
            add(new LabelField("Choose a contact"));
View Full Code Here

TOP

Related Classes of net.rim.device.api.ui.component.AutoCompleteField

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.