Bug 139541 - Add ability to specify columns in listview rewrite
Summary: Add ability to specify columns in listview rewrite
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: Red Hat Network
Classification: Retired
Component: RHN/R&D
Version: RHN Devel
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Jesus M. Rodriguez
QA Contact: Red Hat Satellite QA List
URL:
Whiteboard:
Depends On:
Blocks: rhnMilestone1
TreeView+ depends on / blocked
 
Reported: 2004-11-16 16:55 UTC by Jesus M. Rodriguez
Modified: 2007-04-18 17:15 UTC (History)
0 users

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2004-12-03 15:41:19 UTC
Embargoed:


Attachments (Terms of Use)

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>


Note You need to log in before you can comment on or make changes to this bug.