Thank you Prakash. I did add custom jquery in the entity list/options/custom javascript field. I had the task of making a multi-line text(MLT) field appear on each row of a entity list and be scrollable, but the height of the field should be only 3 rows high. The MLT was in the ninth position on each row. I used this jquery/CSS to achieve this. }) $(".entitylist.entity-grid").on("loaded", function () { var rows = $("table tr td:nth-child(3)").length; for (var i = 0; i < rows; i++) { $("table tr td:nth-child(8)").eq(i).css('display', '-webkit-box'); $("table tr td:nth-child(8)").eq(i).css('overflow', 'hidden'); $("table tr td:nth-child(8)").eq(i).css('text-overflow', 'ellipsis;'); $("table tr td:nth-child(8)").eq(i).css('-webkit-line-clamp', '3'); $("table tr td:nth-child(8)").eq(i).css('-webkit-box-orient', 'vertical'); $("table tr td:nth-child(8)").eq(i).addClass('descScroll-width'); } }) the row in the entity list appears like I came up with this solution by combining the code from several other posters on the internet and trial-by-error.
↧