Hover to see truncated task titles in full in list view

It would save so much distraction and time if we could be able to see, without having to open the task detail pane, the full task title that might be truncated.

What I’m requesting is very much like this:

but…

That’s a great feature but it’s usually not available as described in Quick tip: Seeing truncated task titles in full in list view because it’s only for tasks with subtasks and even then only available when virtually no filters, groups, or sorts are applied.

Some affordance to hover to display such a tooltip would be a big win, and has long been a standard user experience for displaying truncated information on demand.

Thanks for considering,

Larry

4 Likes

Since this is done via CSS you can create a bookmarklet that does this.

<div class="SpreadsheetTaskName-shadow" aria-hidden="true">A very looooong task name could be cropped and not wholly visibile but if a bookmarklet added an onhover to this element, then it would show. </div>

function addHoverToDiv() {
  const div = document.querySelector('.SpreadsheetTaskName-shadow');
  if (div) {
    div.onmouseover = function() {
      const tooltip = document.createElement('span');
      tooltip.textContent = this.textContent;
      tooltip.style.position = 'absolute';
      tooltip.style.backgroundColor = 'white';
      tooltip.style.border = '1px solid black';
      tooltip.style.padding = '5px';
      this.appendChild(tooltip);
    };
    div.onmouseout = function() {
      this.removeChild(this.lastChild);
    };
  }
}

addHoverToDiv();
1 Like

When mousing over a truncated task name, the full entry should popup when the mouse hovers over it. This happens for the project name, but having to go into each task name for long tasks is very time consuming.

Hi @J_Peter_Pagano, thanks for providing this feedback!

While it’s currently possible to see the full task name in search results and suggested dependencies when you hover over the task name with your mouse, hopefully this is something our Product team can introduce Asana-wide in the future.

I’ll keep you posted and let you know if we have any updates :slight_smile:

1 Like