Is it possible to hide or minimize certain columns on the Agile Board, just for my own view?

Shaun T Smith April 30, 2015

My team uses a 7-column format for our Agile Boards, which can cause the text on the individual cards to become truncated or mangled. On most days I only really use the first 3-4 columns anyway, so it would be great if I could hide or minimize the last three columns just in my browser without actually altering the project's settings, which obviously would disrupt my coworkers.

1 answer

0 votes
Philip Schlesinger April 30, 2015

Hi @Shaun T Smith,

I use JavaScript like you see below to make my Closed column disappear.

This first block is my bookmarklet:

javascript: (function () { var jsCode = document.createElement('script'); jsCode.setAttribute('src', 'http://foo.bar.com/baz/myScript.js'); document.body.appendChild(jsCode); }());

 

This is what I store in a file located at http://foo.bar.com/baz/myScript.js :

javascript: (function() {
var closedColumnNameParent = $('h2:contains("Closed")').parent();
var closedColumnID = closedColumnNameParent.attr('data-id');
closedColumnNameParent.hide();
$('li[data-column-id="'+closedColumnID+'"]').hide();
})();

Suggest an answer

Log in or Sign up to answer