I am using java language during working; I want to know information about display tag in JAVA. So please provide me some information about it. Thanks in advance.
I am using java language during working; I want to know information about display tag in JAVA. So please provide me some information about it. Thanks in advance.
Example shown below permits give columns you want shown and names of headers of these columns. Just add tag <display: column property="...">.
Code:<display: table name ="mylist" > <display: column property ="id" title ="No." /> <display: column property ="name" title ="Name" /> <display: column property ="firstname" title ="Name" /> <display: column property ="email" title ="Email" /> </ display: table>
Displaytag present following possibilities:
• When you have list whose items are sorted and grouped in many columns: rather than repeating same values in columns, only values that modify will be shown
• aggregation of column,
• header and footer table,
• formatting dates and numbers,
• External paging helps handle program by yourself sorting and paging.
Bookmarks