searchBy

Se invoca generalmente desde un list.xhtml y asigna el parametro para buscar, se usa en conjunto con el metodo move para realizar el filtro.

// <editor-fold defaultstate="collapsed" desc="searchBy(String string)">
    @Override
    public String searchBy(String string) {
        try {

            loginController.put("searchcliente", string);

            writable = true;
            move();

        } catch (Exception e) {
            JsfUtil.errorMessage("searchBy()" + e.getLocalizedMessage());
        }
        return "";
    }// </editor-fold>

pagina list.xhtml

Last updated

Was this helpful?