1
0
-1

I have a requirement to change the position of Edit Hyperlink at first colum in data list But I am unable to do this

    CommentAdd your comment...

    2 answers

    1.  
      1
      0
      -1

      You can use Javascript to manipulate the datalist inbox hyperlink, for example below (place this code into the userview menu Custom Footer):

      <script>
      $('.column_inboxAction').each(function() {
          $(this).insertBefore($(this).prevAll('.column_yourFirstColumnIdHere'));
      });
      </script>

      Read https://www.google.com/search?q=jquery+Re-order+table+columns

        CommentAdd your comment...
      1.  
        1
        0
        -1

        Hi,

        don't quite understand what you mean, unfortunately. Need more details. 

        Maybe consider using Userview Builder > Settings > theme > advanced > custom CSS to change position?

        Seems this article they can resize the datalist column, maybe you can do whatever you intended to do as well?

        Resizing Datalist Column to Accommodate Large Number of Columns - Knowledge Base for DX 7 - Joget | COMMUNITY

        1. mohd salman

          I have a data list in this list I have a column name edit which is last column My requirement is to put this edit at first column in the table

          Please refer attach screenshot

        CommentAdd your comment...