Hello dear@Thanos Batagiannis [Adaptavist] , @Daniel Yelamos [Adaptavist], @Roland Holban (Adaptavist)
I've encountered problem with select list conversion. Results in list highlighted but not filtered.
As i can see screenshots in this instruction (which i followed), result should be filtered, but it is not.
Here is the code of rest endpoint:
import com.atlassian.jira.web.bean.PagerFilter
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.search.SearchProvider
import com.atlassian.jira.jql.parser.JqlQueryParser
import com.onresolve.scriptrunner.runner.rest.common.CustomEndpointDelegate
import groovy.json.JsonBuilder
import groovy.transform.BaseScript
import ru.raiffeisen.main.helpers.ConstantsHelper
import javax.ws.rs.core.MultivaluedMap
import javax.ws.rs.core.Response
@BaseScript CustomEndpointDelegate delegate
getTemplates(httpMethod: "GET") { MultivaluedMap queryParams ->
def query = queryParams.getFirst("query") as String
def user = ComponentAccessor.jiraAuthenticationContext.getLoggedInUser()
def rt = [:]
def jqlQuery = "project = \"TEST\" and status = In Progress"
def issueManager = ComponentAccessor.issueManager
def jqlQueryParser = ComponentAccessor.getComponent(JqlQueryParser.class)
def searchProvider = ComponentAccessor.getComponent(SearchProvider.class)
def query1 = jqlQueryParser.parseQuery(jqlQuery)
def results = searchProvider.search(query1, user, PagerFilter.unlimitedFilter)
def customField = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectsByName("text custom field").first()
def templateList = results.issues.collect { issue-> issueManager.getIssueObject(issue.id).getCustomFieldValue(customField) }.findAll {it != null}
rt = [
items : templateList.collect { String row ->
[
value: row,
html: row.replaceAll(/(?i)$query/) { "<b>${it}</b>" },
label: row,
]
},
total: templateList.size(),
footer: "Choose template... "
]
return Response.ok(new JsonBuilder(rt).toString()).build();
}
And behaviour:
getFieldByName("Template").convertToSingleSelect([
ajaxOptions: [
url : getBaseUrl() + "/rest/scriptrunner/latest/custom/getTemplates",
query : true, // keep going back to the sever for each keystroke
// this information is passed to the server with each keystroke
formatResponse: "general"
],
])
May be I am missing something common?
I ve tested it on Jira v7.2.15 and Scriptrunner versions: 5.2.2, 5.4.28
and Jira v7.8.1, SR v5.4.28
Thanks in advance!
Hi Mark,
You will need to do the filtering in your rest end point.
So, for a case insensitive search, you will need something like
def templateList = results.issues.collect { issue-> issueManager.getIssueObject(issue.id).getCustomFieldValue(customField) }.findAll {it != null} as List<String>
rt = [
items : templateList?.findAll { it.toLowerCase().contains(query?.toLowerCase())}?.collect { row ->
// rest of the script
}
That should do the trick, ping me if it doesn't :)
Kind regards,
Thanos
Many thanks, @Thanos Batagiannis [Adaptavist]!
It works perfect!
As i noticed, for all time that i work with scriptrunner plugin, many useful things just not described in documentation, like this for example or for setFormValue have examples only for selectlists and textfields and for dates, userpickers, grouppickers need some R&D actions from users.
In my opinion behaviours very poorly documented, I am using Idea and see so many methods in behaviour api, which are not described. It will be great to do JavaDoc for them.
So i have one question.
Do Adapatavist have plans on improving documentation?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mark,
Glad that we made it work.
I hear you and you are right. The thing is that ScriptRunner abilities are endless and no kind of 'traditional' documentation can cover all the cases.
So right now we are working into 2 major areas
The first one is to improve our "traditional" documentation - in progress
The second one is a way to share scripts with the public in a better way than just examples in the documentation - in progress
Regarding the select list conversion issue itself, we are also working in a solution that will make it much more easier and more flexible.
Kind regards and thanks a lot for the feedback,
Thanos
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Thanos Batagiannis [Adaptavist] , I have the same issue as @Mark Markov , but with diferent porpose as well as diferent code, isn't for a issue but for a request.
Could you help me also?
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Mark Markov and @Thanos Batagiannis [Adaptavist]
I need to implement something like this:
I want to create a select list field for a particular project with options which appear on screen as:
<value of a custom field(any other custom field) of an issue><space><Value of summary field of the same issue>
and the no. of options should be same as the no. of issues in that particular project.
Could you please help.
Thanks and Regards,
Swapnil Srivastav.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have problem on setting default value on user picker on customer portal. I think I need this one. can you help? @Mark Markov
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.