For Fragment my code is
public class FragmentOne extends AbstractFragment
{
protected static final String TEMPLATE_DIRECTORY_PATH = "templates/fragments/";
public FragmentByAssignee(VelocityTemplatingEngine templatingEngine, JiraAuthenticationContext authenticationContext)
{
super(templatingEngine, authenticationContext);
}
@Override
public String getId() {
return "fragmentByAssignee";
}
@Override
public boolean showFragment(BrowseContext arg0)
{
return true;
}
@Override
protected String getTemplateDirectoryPath() {
return TEMPLATE_DIRECTORY_PATH;
}
@Override
protected Map<String, Object> createVelocityParams(BrowseContext ctx) {
Map<String, Object> createVelocityParams = super.createVelocityParams(ctx);
createVelocityParams.put("user", "Satyendra");
return createVelocityParams;
}
}
For Newprojecttab class it is:
public class Newprojecttab extends AbstractFragmentBasedTabPanel
{
private final FragmentOne fragmentOne;
private final FragmentTwo fragmentTwo;
public IssuesBasedProjectTab(VelocityTemplatingEngine templatingEngine, JiraAuthenticationContext authenticationContext)
{
this.fragmentOne= new FragmentOne(templatingEngine, authenticationContext);
this.fragmentTwo= new FragmentTwo (templatingEngine, authenticationContext);
}
@Override
protected List getLeftColumnFragments(BrowseContext arg0)
{
final List fragments = new ArrayList();
fragments.add(fragmentOne);
return fragments;
}
@Override
protected List getRightColumnFragments(BrowseContext arg0)
{
final List fragments = new ArrayList();
fragments.add(fragmentTwo);
return fragments;
}
public boolean showPanel(BrowseContext ctx)
{
return true;
}
Its compiling and build sucessfully, But it is not displaying the tab panel & fragment.
Thanks in advance.
Any error in the logs? What is the plugin version? I have a similar example in JIRA Development but it works only with version 1 plugins as some of the components are not exposed via osgi.
Hi,
Thanks for your advice, I have all ready sorted this out it was due to Plugin Version as explained by one of my senior resource and I have implemented it.
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.