RE: Sorting paging search results with delete button for each row?

2006-02-23 Thread Narayanan, Shiva
post to a DeleteAction. How do you achieve this using display tag? Thanks in advance!! -Original Message- From: Lixin Chu [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 22, 2006 5:40 PM To: Struts Users Mailing List Subject: Re: Sorting paging search results with delete button

RE: Sorting paging search results with delete button for each row?

2006-02-23 Thread Chandra.Ravinithala
To: Struts Users Mailing List Subject: RE: Sorting paging search results with delete button for each row? I would like to page and sort the data (10 thousand records) retrieved from the database. I don't want to sort it in memory. I am using Struts DAO Hibernate) and want to page search results

Re: Sorting paging search results with delete button for each row?

2006-02-23 Thread Dave Newton
Narayanan, Shiva wrote: I would like to page and sort the data (10 thousand records) retrieved from the database. I don't want to sort it in memory. How/where do you want to sort it?! Dave - To unsubscribe, e-mail:

RE: Sorting paging search results with delete button for each row?

2006-02-23 Thread Narayanan, Shiva
Planning to use Hibernate query in my DAO. -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Thursday, February 23, 2006 9:06 AM To: Struts Users Mailing List Subject: Re: Sorting paging search results with delete button for each row? Narayanan, Shiva wrote: I would

Re: Sorting paging search results with delete button for each row?

2006-02-22 Thread Lixin Chu
why displaytag does not meet your requirements ? On 2/22/06, Narayanan, Shiva [EMAIL PROTECTED] wrote: Hello All, What is the best way to sort and page search results, (with delete button for each row) using Struts? Are there are any open source tag libraries to achieve this? Looked at

Re: Sorting paging search results with delete button for each row?

2006-02-22 Thread Kim Brianne Go
you can add delete functionality with display tag by assigning an actionmapping to delete a particular record based on parameters passed. though i tried using it on extremecomponents. though same concept applies with display tag. On 2/23/06, Lixin Chu [EMAIL PROTECTED] wrote: why displaytag

Sorting paging search results with delete button for each row?

2006-02-21 Thread Narayanan, Shiva
Hello All, What is the best way to sort and page search results, (with delete button for each row) using Struts? Are there are any open source tag libraries to achieve this? Looked at displaytag. I want to retrieve data from the database using hibernate. Many Thanks!!