1 2 Previous Next 16 Replies Latest reply on Mar 12, 2010 6:02 AM by nbelaevski Go to original post
      • 15. Re: How to catch sorting event on Extended Data Table
        eugenbesel

        Hello Nick,

         

        Iljas example looks like my code:

         

        private String getPropertyName(FacesContext facesContext, Expression expression) {
                try {
                    return (String) ((ValueExpression) expression).getValue(facesContext.getELContext());
                } catch (ELException e) {
                    throw new FacesException(e.getMessage(), e);
                }
            }

         

        Ilja works with Hibernate on this place and use criteria object.

         

        I work with normal JDBC.

         

        ((ValueExpression) expression).getValue(facesContext.getELContext()); is null in my fall.

         

        any advices?

        • 16. Re: How to catch sorting event on Extended Data Table
          nbelaevski
          Yes, check page code.
          1 2 Previous Next