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

Doing Done column doesn't work #49

Closed cliveytech closed 3 years ago

cliveytech commented 3 years ago

Hi @edtro, Thanks for implementing this excellent extension. I've got swimlanes and columns working, but the Doing/Done column doesn't work for me. If I use the api to query one of our Work Items I can see the Done Column is set as:

"System.BoardColumn":"In Progress","System.BoardColumnDone":true

So I implemented the column as:

{ "name":"In Progress", "title":"In Progress/Active", "width": 2, "doingDone":{ "field":"System.BoardColumnDone", "doingTitle":"Working on it...", "doingDefaultValue":false, "doneTitle":"Finished!", "doneValue":true } },

Which does show the new sub-columns but doesn't show any of the cards in the done column (just in doing). Is there something I'm doing wrong?

Many thanks Clive

edtro commented 3 years ago

@cliveytech Dear Clive, Please take a look at this thread: https://github.com/edtro/EdTro.AzureDevOps.Extensions.querybasedboards/issues/41 The main issue is that the 'System.BoardColumnDone' field is not editable by the api, this is a system field.

You have got two options:

Hope this helps.

Kr Edward