I need to extract Categorizing tool from the view details panel to the Content Items panel, so..in the actions group. I copy the following code from document_details.jsp to browse.jsp:
javax.faces.el.EvaluationException: Cannot get value for expression '#{DocumentDetailsBean.categorised}' caused by: javax.faces.el.EvaluationException: Exception getting value of property categorised of base of type : org.alfresco.web.bean.DocumentDetailsBean caused by: javax.faces.el.EvaluationException: Bean: org.alfresco.web.bean.DocumentDetailsBean, property: categorised caused by: java.lang.reflect.InvocationTargetException caused by: java.lang.NullPointerException
DocumentDetailsBean is not known on browse.jsp. You may try to extend the browse.jsp backing bean (named BrowseBean) to add method related to categories. Look at http://wiki.alfresco.com/wiki/Adding_a_Custom_Dialog for a related example.
But editing categories directly from browse.jsp will probably won't be easy without JSF knowledge…