I want to know DataList

Confluence User - 29 Jun, 2022

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

datalists;all

3


30 Jun, 2022
confluenceUser
confluenceUser

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

30 Jun, 2022
confluenceUser
1
confluenceUser

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

30 Jun, 2022
confluenceUser
confluenceUser

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

RELATED QUESTIONS

Your answer


To answer a question you'll need an account.

Print