1
0
-1

How can we edit the List filter search button caption? There is nowhere to edit its properties! I want to change it from Show to Search or Filter.

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      There's a low code way of doing it using Javascript. You can just add 

      <script>
      document.querySelector('.form-button').value = 'Search';
      </script>

      to Configure CRUD > UI (List) > Custom Header

      1. Nik

        I use script page component to put this code (without <script> tag) and worked. But there are more than one html tags that have this class. For this particular situation there in no problem but I think that it is a dangerous approach since the button doesn't have an id. 

      2. Nik

        Also because this is a front-end approach and not back-end (late approach since the change is done after DOM loaded) the old value is still there if you view the HTML source code and also in the joget form!!!

      CommentAdd your comment...