Hi All,
Is there a plugin in Jira which provides month year picker field, it will display the value something like this July 2013.
OR
how could we pick month and year from date picker field and display the result in a read only field?
If anyone could provide me an example of the same that would be very helpful.
Thanks and Regards,
Jenin C M
Thanks all, I have achieved this via Calculated Custom Field.
Jenin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you can do this with the help of following code
Timestamp committedDate = (Timestamp)issue.getCustomFieldValue(cfm.getCustomFieldObjectByName("Committed Date")); System.out.println(committedDate+" current committed date value"); if(committedDate!=null) { System.out.println(new SimpleDateFormat("MMMM").format(committedDate)+" month details 22"); System.out.println(new SimpleDateFormat("yyyy").format(committedDate)+" year details 22"); issue.setCustomFieldValue(cfm.getCustomFieldObjectByName("MonYear"),new SimpleDateFormat("MMMM").format(committedDate)+" "+new SimpleDateFormat("yyyy").format(committedDate)); } try { IssueManager issueManager4=comAcc.getIssueManager(); issueManager4.updateIssue(authenticationContext.getLoggedInUser(),issue,EventDispatchOption.ISSUE_UPDATED,true); comAcc.getIssueIndexManager().reIndex(issue); } catch(Exception e) { e.printStackTrace(); }
here Committed Date is of Date Picker type and MonYear is of Read Only Text Field.
you can place this in listener which catch for ISSUE_CREATED and ISSUE_UPDATED events.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well, the shoddy way is to create two select lists. One for month and one for year. To make it read only, only show the field in specific screens.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.