Opened 14 years ago
Closed 14 years ago
#1543 closed enhancement (fixed)
Show any-to-any links on all single-item view pages
Reported by: | Nicklas Nordborg | Owned by: | Nicklas Nordborg |
---|---|---|---|
Priority: | major | Milestone: | BASE 2.17 |
Component: | web | Version: | |
Keywords: | Cc: |
Description (last modified by )
This is currently only implemented for transformations and bioassay sets. Historically, any-to-any links have only been generated by some plug-ins (eg. Base1PluginExecutor
). If any-to-any links get more common (see #1534 and #267) we need to show them in the gui.
The any-to-any section should only be visible if there are any links, so this has to be changed in the current implementation. Otherwise I think the current implementation can be used. The only thing needed is to add an <jsp:include>
tag on the view pages:
<jsp:include page="../../../common/anytoany/list_anytoany.jsp"> <jsp:param name="ID" value="<%=ID%>" /> <jsp:param name="item_type" value="<%=itemType.name()%>" /> <jsp:param name="item_id" value="<%=itemId%>" /> <jsp:param name="title" value="Other items related to this bioassay set" /> </jsp:include>
Note! Adding the links will still require a plug-in or an extension.
Change History (11)
comment:1 by , 14 years ago
Description: | modified (diff) |
---|
comment:2 by , 14 years ago
comment:3 by , 14 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:4 by , 14 years ago
comment:5 by , 14 years ago
comment:6 by , 14 years ago
comment:7 by , 14 years ago
comment:8 by , 14 years ago
comment:9 by , 14 years ago
comment:10 by , 14 years ago
comment:11 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
(In [5491]) References #1543: Show any-to-any links on all single-item view pages
This is now implemented on the "View sample" page.