Re: [Wicket-user] Performance test, how do you do it?

2007-04-02 Thread serban.balamaci
We use HtmlUnit. The biggest problem that we had and chose HtmlUnit was the testing of ajax pages. We could not find anything that was able to handle the ajax calls. I had some problems, when switching to Wicket 1.2.2 probably the wicket ajax engine was rewritten after version Wicket 1.2.2,

[Wicket-user] error(...) No page found for component

2007-03-31 Thread serban.balamaci
Hi. I have a problem in that inside the constructor of a page(panel actually) i invoke a stored procedure which needs to get the model for the panel. The stored procedure may throw an error message. The error message should be seen by the user, he can understand what he did wrong. So inside the

Re: [Wicket-user] Pass popup parameters from parent page

2007-02-21 Thread serban.balamaci
Thanks serban.balamaci wrote: Hi. I need to open a popup page that displays information that is related to parameters in the parent page. For example, a popuppage with a list of streets, and in the parent i would have a combo with counties ids, name and only the street in that county

Re: [Wicket-user] Pass popup parameters from parent page

2007-02-20 Thread serban.balamaci
=' + document. + searchForm.getId () + . + textField.getId () + .value); On 2/19/07, Igor Vaynberg [EMAIL PROTECTED] wrote: there is a lot of javascript out there that shows you how to read the currently selected item out of a select box -igor On 2/19/07, serban.balamaci [EMAIL PROTECTED] wrote

[Wicket-user] Pass popup parameters from parent page

2007-02-19 Thread serban.balamaci
Hi. I need to open a popup page that displays information that is related to parameters in the parent page. For example, a popuppage with a list of streets, and in the parent i would have a combo with counties ids, name and only the street in that county would be shown in the popup. The problem