@support_appcoll Any update on this? We look at these tables every day. For what it's worth, Gemini gave me a workaround where I can create a bookmark that I can click when I view Appcoll to change the page display so that it doesn't statically truncate text, but it has to be clicked each and every time the page is loaded
6a6e0360-aefc-4d1f-ba15-37e176a222e4-image.png
javascript:(function(){
/* Find all elements that have a hover title */
var cells = document.querySelectorAll('[title]');
cells.forEach(cell => {
/* If the title has content and the visible text has '...', swap them! */
if(cell.title && cell.innerText.includes('...')) {
cell.innerText = cell.title;
cell.style.whiteSpace = 'normal';
cell.style.wordBreak = 'break-word';
cell.style.height = 'auto';
cell.style.display = 'block';
}
});
/* Force the rows to expand vertically to accommodate the new text */
var rows = document.querySelectorAll('tr, .aw-grid-row');
rows.forEach(row => {
row.style.height = 'auto';
});
})();