I wish to implement a filter that provides the same results as the Scrum board's backlog lists. So that I can use the Export CSV feature found on the "Issues and Filters" page. And since there isn't the ability to export a csv file of the scrum board's backlog.
I don't want to modify it, but implement the same filter so that I can export only the backlog items.
I haven't found the (default ?) filter and while I'm close to emulating that filter, I want to know the exact filter.
Thanks
the following script can use to set default value for you
<script type="text/javascript">
jQuery(document).ready(function($) {
JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) {
setDefaultValues();
});
setDefaultValues();
function setDefaultValues(){
var currentUser=getCurrentUserName();
if(currentUser=='Prasad'){
$("#customfield_11329").val(currentUser);
}else{
$("#customfield_11329").val('');
}
}
function getCurrentUserName()
{
var user;
AJS.$.ajax({
url: "/rest/gadget/1.0/currentUser",
type: 'get',
dataType: 'json',
async: false,
success: function(data) {
user = data.username;
}
});
return user;
}
});
</script>
for reference
That's not something Jira supports. Defaults for custom fields are set by field contexts and are hence the same for every user. System fields mostly don't have defaults, but when they do, the normal behaviour there is to use the last value you used, not any particular default
I think the behaviours plugin would let you do this to some extent, but I don't think it will store indiviudal user preferences.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was really hoping there was something that I was missing. Thanks though
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.