0 Replies Latest reply on Nov 18, 2011 4:54 AM by nibby

    Changing variables in jbpm console

    nibby

      Hi guys

       

      I have a simple question. I want to have the jbpm console display for example 25 results per page instead of just the default 10.

       

      I found the place to do it in t_processinstance.xhtml:

       

      <gd:repeat value="#{piList}" var="pi" idVar="rid" first="#{piList_pager.first}" limit="#{piList_pager.limit}">

       

      I can edit it to

       

      <gd:repeat value="#{piList}" var="pi" idVar="rid" first="#{piList_pager.first}" limit="25">

       

      and it works, but i'd rather do it where this variable is configured - anyone can tell me where that is?

       

      Thanks in advance.