Re: setResponsePage in AjaxSubmitLink causing AjaxError

2013-04-17 Thread Sven Meier
Hi Jeremy, redirects via ajax work fine here. See wicket-examples' LinksPage.java for an example. Sven On 04/16/2013 11:30 PM, Jeremy Levy wrote: I'm using Wicket 6.6.0, in an AjaxSubmitLink when I do a setResponsepage(myclass.class) or (throw new RedirectResponse) i get the following error

WicketTester against real EJB backend

2013-04-17 Thread Tom Eicher
Hello good Wicket People, I now have a cool Wicket+CDI/Weld+EJB EAR running in JBoss AS7. Before it progresses further, I should start adding some automated integration tests, I think ;-) The idea I have, is to use WicketTester against a real EJB deployment. The benefits would be: - a lot

Re: WicketTester against real EJB backend

2013-04-17 Thread hantsy
I also opened an eye on the Wicket-CDI module, it seems it is based JBoss Solder project. Consider Arquillian to test your Java EE 6 application on JBoss 7. http://www.arquillian.org It is also a JBoss project. Hantsy On 4/17/2013 22:50, Tom Eicher wrote: Hello good Wicket People, I now

In Method Grid - Questions

2013-04-17 Thread David Beer
Hi All, I am looking at using the In Method Grid and have been playing with the grid. I have a couple of questions regarding the grid. 1. How do I get rid of the end Column? 2. Can I add my own css class to the table parts to fit in with my Bootstrap theme? Am I better off creating my own

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-17 Thread dhongyt
So if I would like to store the checks on many different pages, then I would have to override the AjaxPagingNavigationBehavior function? And in that function when the page changes save the current CheckBox ArrayList into some sort of HashMap maybe? And load the page of checks depending on the

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-17 Thread Sven Meier
Either you have a AjaxFormComponentUpdatingBehavior on each Checkbox, so a selection is automatically synced to the server. Or you make the paging submit a containing form: http://apache-wicket.1842946.n4.nabble.com/Wicket-user-Editable-DataTable-with-Paging-td1925442.html Regards Sven On

Problem Submitting Form in Modal Window / Ajax POST stopped

2013-04-17 Thread Tim Eapen
Hi All, I have a form inside a modal window. I want to submit the form using an AjaxButton, however the button is unresponsive. Looks like there are some errors client-side. I see the following error in the Ajax Debug window: INFO: Ajax POST stopped because of precondition check,

Re: show image retrieved from database

2013-04-17 Thread ORACLEADF
This article is good for showing only one image but I want to execute a SQL statement and binding the result with a grid. The grid contains two pictures in each rows .One picture for dealer and another for its supervisor. You can see a sample written with PHP in the following link:

Re: show image retrieved from database

2013-04-17 Thread ORACLEADF
I found a solution for my problem but I think it causes to lose performance: Images loaded from database in byte[] format. I converted them to images and then save them to system file. You can see the code in this link : byteToImage.png