ExecutingMethodsFromLinkButtonParameters

2006-01-12 Thread Vladimir Coutinho
I tried to follow the instruction to open a detail page from a table. The first time I click the commandlink opens the detail page. But if I click the BACK button of the BROWSER, the table apears, but the links doesn't work more. Master table     preserveDataModel="false"     cellpadding="0" cel

Re: ExecutingMethodsFromLinkButtonParameters

2006-01-16 Thread Vladimir Coutinho
Could someone help with this. I get a user input, query the database and show a list ( ). The user choose a item ( ), and I open a detail page. Almost is OK, but when the user clicks the browser back button in the detail page, the page (with the table) stop working. On 1/12/06, Vladimir Coutinho

Wiki entry "ExecutingMethodsFromLinkButtonParameters": how can it works?

2006-05-17 Thread Cosma Colanicchia
the action handler for the "Edit" commandLink find the clicked row in the current DataModel rowIndex? Who is going to set it? Thanks in advance Cosma [1] http://wiki.apache.org/myfaces/ExecutingMethodsFromLinkButtonParameters

Re: Wiki entry "ExecutingMethodsFromLinkButtonParameters": how can it works?

2006-05-17 Thread Cosma Colanicchia
d as needed before the rendering of the table output. Anyone can> explain me how can a call to getRowData() in the action handler for > the "Edit" commandLink find the clicked row in the current DataModel> rowIndex? Who is going to set it?> > Thanks in advance> Cosma> > > [1] http://wiki.apache.org/myfaces/ExecutingMethodsFromLinkButtonParameters>

Re: Wiki entry "ExecutingMethodsFromLinkButtonParameters": how can it works?

2006-05-17 Thread Cosma Colanicchia
o getRowData() in the action handler for > the "Edit" commandLink find the clicked row in the current DataModel> rowIndex? Who is going to set it?> > Thanks in advance> Cosma> > > [1] http://wiki.apache.org/myfaces/ExecutingMethodsFromLinkButtonParameters>

Re: Wiki entry "ExecutingMethodsFromLinkButtonParameters": how can it works?

2006-05-17 Thread Mike Kienenberger
On 5/17/06, Cosma Colanicchia <[EMAIL PROTECTED]> wrote: > Having just writed a custom DataModel for paging on a large table, I > understood that the setRowIndex and getRowData methods are repeatedly > invoked as needed before the rendering of the table output. Anyone can > explain me how can

Re: Wiki entry "ExecutingMethodsFromLinkButtonParameters": how can it works?

2006-05-18 Thread Cosma Colanicchia
Thank you for the response, but I found a solution that doesn't requires binding the dataTable on my backing bean. In fact, it is the exact one described in the wiki, I had to remove preserveDataMode="true" to make it work. Having to session-scope my DataModel anyway for other reasons, I think that