Instead of filtering by a tag (and highlighting the stories with that tag), can I edit the code and only show stories with a specific tag on the Kanban board?
I found another question with this code (as a sample for another purpose):
var query = new rally.sdk.util.Query('Tags.Name Contains "whatever");
Will this work? if so, where do I input this line of code? I've tried a few places with no success.
thanks!
That query should work. The Kanban app is built using the App SDK's CardBoard component, so you can simply specify a 'query' property on the config object passed to the constructor:
You can learn more about working with the Query utility here: http://developer.rallydev.com/help/utilities#Query
The CardBoard component is documented here: http://developer.rallydev.com/help/card-board