Hi, the title basically says it all but it would be extremely beneficial for myself and my team if the ability to move requests to different projects as needed could be developed for Jira Mobile (I use iOS).
If implemented (along with the bug fix to allow for Request Types to be edited which I've been told is coming), I would be able to use Jira for iOS for the vast majority of my JSD work, which would be awesome!
Thanks,
Evan
(posted this in the wrong place before sorry)
i think you have to try with getComponentOfType(Class<T> componentClass)
check this doc
https://docs.atlassian.com/jira/latest/com/atlassian/jira/component/ComponentAccessor.html
can you share your code ?
why can't you instialize this through constructor?
check here, in this class it is insitialized through constructor and used
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just out of curiosity, where in your class are you trying to receive the ComponentAccessor?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
import com.atlassian.jira.component.ComponentAccessor;
if (fieldConfigId != null)
{
FieldConfigManager fieldConfigManager = ComponentAccessor.getComponent(FieldConfigManager.class);
fieldConfig = fieldConfigManager.getFieldConfig(fieldConfigId);
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
can you try with getComponentofType(FieldConfigManager.class) method
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.