Zuber, The change we did was for the 'sort' funtionality of the datagrid, which was similiar to what you were experiencing to the 'next' pagination. So we just created a taglib, that had a function call that we would call from our jsp page. Then in that method we would remove what wasn't needed. Now you may need create a function for every datagrid that you have. I've attached it. You're probalem is more with the pager and how it's rendered. So you should be able to do something similiar, write a taglib which you call instead of the netui one. I've attached a sample on that we were going to write, this was more to change the style of the render, but didn't bother in the end. Hope this is of some help. So instead of calling <netuidata:renderPager> you can call <zuberdata:renderPager> cpfunctions.tld - taglib to declare the function for the jsp page CpFunctions.java - the function that the jsp page calls SimplePagerRenderer.java - a sample Pager Render that we were doing, which removed unwanted checkboxes FirstPreviousNextLastPagerRenderer.java - the actual netui pager. Cheers, Anthony Maguire Oakton ph: (03) 9617 0200 fax: (03) 9621 1951 Mobile: 0416 766 931 www.oakton.com.au <https://melb.oakton.com.au/exchweb/bin/redir.asp?URL=http://www.oakton.com.au>
________________________________ From: zubair syed [mailto:[EMAIL PROTECTED] Sent: Wed 17/10/2007 4:27 PM To: Beehive Users Subject: Re: issue in datagrid. Hi Anthony, I tried second option but it didn't work . If possible can u paste the code for overriding url builder ? Regards, Zuber On 10/16/07, Anthony Maguire <[EMAIL PROTECTED]> wrote: > > Hi Zubair, > > I don't have the answer for you, but what is happening is that the > urlbuilder for the datagrid is building an invalid url for the pagination > 'next' link. > > The urlbuilder grabs the url, including the http parameters, for the form, > that was submitted from the request and builds its url on that. > > If you view the source of the url of the 'next' link before submitting the > form and the url of the same 'next' link after submitting the form, you > should see the difference. > > When we encountered this problem there was 2 things we did that sorted it. > One was override the url builder with a customised url builder which removed > what shouldn't be in the url, in your case this would be the form http > parameters, or the other solution was when we would go back to a datagrid > jsp page we would go back by submitting an action to an empty form, that way > no parameters would be present. > > Hope that helps some, but there is definitely a problem with the url > builder. There maybe some other config file that would help with this, but > i'm not aware of one. > > Cheers, > Anthony Maguire > Oakton > ph: (03) 9617 0200 > fax: (03) 9621 1951 > Mobile: 0416 766 931 > www.oakton.com.au < > https://melb.oakton.com.au/exchweb/bin/redir.asp?URL=http://www.oakton.com.au > > > > ________________________________ > > From: zubair syed [mailto:[EMAIL PROTECTED] > Sent: Tue 16/10/2007 8:18 PM > To: [email protected] > Subject: issue in datagrid. > > > > Hi all , > > I encountered one problem please help me out . The issue description is as > follows: > > Jsp page has a grid and other combo boxes . Data grid has pagination and > it > has a radion button. Some action would be performed when i clicked on > button > with all the value set in the formbean,Upto this there is no issue. Now on > the same page when i click on 'next' hyper link of datagrid (which has > pagination done) calls the same action again which was done just before > the > click of next button so all the value which were set in formbean get > submitted again. > > For Example: > i need to select some information from the page and select one item > from the data grid and call the action print. Now when i navigate to next > on > the datagrid it calls the 'print' action again and submit all the formbean > data and print action would be performed again. > > > Please advice how can i resolved this issue. > > Regards, > Zuber > > > > IMPORTANT > 1. This email and any attachments are confidential. Any unauthorised > dissemination or other use of these materials is prohibited. If received in > error, please contact us and delete all copies. > 2. Before opening or using attachments, check them for viruses and > defects. Our liability is limited to resupplying any affected attachments. > 3. Protecting your privacy is important to us. Our privacy statement > and further information is available at www.oakton.com.au. IMPORTANT 1. This email and any attachments are confidential. Any unauthorised dissemination or other use of these materials is prohibited. If received in error, please contact us and delete all copies. 2. Before opening or using attachments, check them for viruses and defects. Our liability is limited to resupplying any affected attachments. 3. Protecting your privacy is important to us. Our privacy statement and further information is available at www.oakton.com.au.
