edtro / EdTro.AzureDevOps.Extensions.querybasedboards

Query Based Boards enables a user to visualize the result of work item queries as a board and track the dependencies.
MIT License
23 stars 2 forks source link

(Already exists) Feature Request: Add ability to set custom Board Columns #50

Closed RansomVO closed 3 years ago

RansomVO commented 3 years ago

We have a project that is just for doing an extensive platform review. As such, we have:

It would be really nice to be able to get Show as Board to display like our board.

RansomVO commented 3 years ago

Never mind, just figured out how to do the configuration. Awesome! :)

edtro commented 3 years ago

Great to hear! Kr Edward

awojtas commented 1 year ago

@RansomVO would you mind sharing your configuration? Love to see how to set the custom column order as ours aren't showing up in the order we'd like. Thanks!

edtro commented 1 year ago

Hi,

I have this setup:

{
   "columns":[
      {
         "name":"New",
         "title":"New/Backlog",
         "isBacklog":true
      },
      {
         "name":"Active",
         "title":"Active/Doing"
      },
      {
         "name":"Resolved",
         "title":"Resolved"
      },
      {
         "name":"Closed",
         "title":"Closed/Done",
         "isBacklog":true
      }
   ]
}

Result: image

And when I change it to:

{
   "columns":[
      {
         "name":"Resolved",
         "title":"Resolved"
      },
      {
         "name":"New",
         "title":"New/Backlog",
         "isBacklog":true
      },

      {
         "name":"Active",
         "title":"Active/Doing"
      },

      {
         "name":"Closed",
         "title":"Closed/Done",
         "isBacklog":true
      }
   ]
}

This results in: image

I hope this helps Kr Edward