Bug 139541

Summary: Add ability to specify columns in listview rewrite
Product: [Retired] Red Hat Network Reporter: Jesus M. Rodriguez <jesusr>
Component: RHN/R&DAssignee: Jesus M. Rodriguez <jesusr>
Status: CLOSED CURRENTRELEASE QA Contact: Red Hat Satellite QA List <satqe-list>
Severity: medium Docs Contact:
Priority: medium    
Version: RHN Devel   
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2004-12-03 15:41:19 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 125080    

Description Jesus M. Rodriguez 2004-11-16 16:55:41 UTC
Remove the HTML from the JSP page.  Use a custom jsp tag
to specify the columns and the header attribute.

<rhn:listdisplay>
   <rhn:column header="header.name"   
               url="UserDetails.do?uid=${current.id}">
      ${current.userLogin}
   </rhn:column>
   <rhn:column header="username.displayname" align="left">
      Show this data
   </rhn:column>
</rhn:listdisplay>

rhn:listdisplay has not attributes only child columns.
rhn:column has a requires header attribute,
and optional: align and url attributes.

Comment 1 Jesus M. Rodriguez 2004-12-03 15:41:19 UTC
We now have the ability to specify the column, as well as the set.
We also have a new list tag which determines if there is a need to display
a list or not.  The listdisplay tag defines the structure of the list (table)
while the column tags define the columns.  See the following example:

<pre>
<rhn:list pageList="${requestScope.pageList}"
          noDataText="page.jsp.messagekey">
  <rhn:listdisplay>
    <rhn:column header="header.name"
                align="center" width="5%">
      <html:multibox property="groups">${current.id}</html:multibox>
      <input type="hidden" name="cid" value="${current.id}" />
    </rhn:column>
    <rhn:column header="assignedgroups.jsp.group"
                align="left"
                url="SystemGroupDetails.do?sgid=${current.id}">
        ${current.group_name}
    </rhn:column>
  </rhn:listdisplay>
  <input type="hidden" name="uid" value="${user.id}" />
  <input type="hidden" name="formvars" value="uid" />
                                                                               
                                                              
    <div align="right">
      <hr />
      <html:submit property="submit">
      <bean:message key="Update Permissions"/>
      </html:submit>
    </div>
</rhn:list>

</pre>