Package org.libreplan.web.common.components

Examples of org.libreplan.web.common.components.Autocomplete.clear()


    }

    private void clearAutocompleteUser() {
        Autocomplete user = (Autocomplete) editWindow.getFellowIfAny("user");
        if (user != null) {
            user.clear();
        }
    }

    public void goToEditForm(ExternalCompanyDTO dto) {
        goToEditForm(dto.getCompany());
View Full Code Here


        autocomplete.addEventListener("onBlur", new EventListener() {

            @Override
            public void onEvent(Event event) {
                if (autocomplete.getText().isEmpty()) {
                    autocomplete.clear();
                    CriterionDTO assignment = (CriterionDTO) row.getValue();
                    assignment.getCriterion().setCostCategory(null);
                }
            }
        });
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.