Ignore:
Timestamp:
Feb 8, 2008, 9:55:48 AM (16 years ago)
Author:
Nicklas Nordborg
Message:

Fixes #868: Support for chips with multiple arrays

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/views/hybridizations/list_hybridizations.jsp

    r4003 r4131  
    253253        exportable="true"
    254254        show="always"
     255      />
     256      <tbl:columndef
     257        id="numArrays"
     258        property="numArrays"
     259        datatype="int"
     260        title="Arrays/slide"
     261        sortable="true"
     262        filterable="true"
     263        exportable="true"
    255264      />
    256265      <tbl:columndef
     
    533542                  onclick="itemOnClick(<%=writePermission ? "event" : null%>, <%=itemId%>)"
    534543                  title="<%=tooltip%>"><%=name%></div></tbl:cell>
     544                <tbl:cell column="numArrays"><%=item.getNumArrays()%></tbl:cell>
    535545                <tbl:cell column="labeledExtracts">
    536546                  <%
     
    539549                  {
    540550                    String separator = "";
     551                    boolean isMultiArrayHyb = item.getNumArrays() > 1;
    541552                    for (LabeledExtract le : labeledExtractQuery.list(dc))
    542553                    {
     
    552563                      }
    553564                      out.write(separator);
     565                      if (isMultiArrayHyb)
     566                      {
     567                        out.write(creationEvent.getSourceGroup(le) + ": ");
     568                      }
    554569                      if (mode.hasPropertyLink())
    555570                      {
Note: See TracChangeset for help on using the changeset viewer.