Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Can we edit the displayed tester for the zephyr scale gadget- Test execution scorecard by tester

Sonali Roy Ghatak
October 26, 2023

Hello,

I want to know if there is any way to display the results of only a selected number of testers in the dashboard where zephy gadget - Test execution scorecard by tester is used. 

For example- In the elow list I am getting all the testers present in the system. Whereas I only want to display the data for 5 of these testers.

Scorecard by tester.png

I do not see any filter that can be applied for tester while configuring the gadget,

gadget configuration.png

 

2 answers

1 vote
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
October 28, 2018

Hello,

If you are on Cloud, then there is the Field Required validator.

If you are on Server, you would need an add-on.

For example you could use the Power Scripts add-on:

https://marketplace.atlassian.com/apps/43318/power-scripts-jira-script-automation?hosting=cloud&tab=overview

You could add a validator with the following script:

if (!hasInput("customfield_10200")) {
   return false, "customfield_10200", "Enter Story Points";

return true;

10200 is the id of the Story Points field.

You can find more info about validators here:

https://confluence.cprime.io/display/JJUPIN/Customizing+workflows

0 votes
David
October 27, 2018

Hello David.

Can you set other type of comparison? Maybe a number comparison does not match with the "not null" check you are using.

Nice regards.

David
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
October 27, 2018

Hi David, I like your name!

 

I've tried that but it doesn't work unfortunately.

 

I've tried the following:

!= NULL (type number)

!= NULL (type string)

>0 (type number)

 

Thanks,

David

Suggest an answer

Log in or Sign up to answer