Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
In your userview builder's settings, add the CSS.
body .dataList th, body .dataList td { display: inline-block; } .dataList table { width: max-content !important; }
And in Custom Javascript, add in the code below.
$(function(){ var n = 1; $("tbody > tr:first > td").each(function(){ var width = $(this).css("width"); //make column header the same width as first data row $("thead > tr > th:nth-child(" + n + ")").css("width", width); //make other data column the same width as first data row $("tbody > tr > td:nth-child(" + n + ")").css("width", width); n++; }); });