[Wicket-user] form processing

2006-07-05 Thread Alexei Sokolov
I need some help with the following scenario.I have a form and when a user is halfway through it, there is a button which leads to another page. The user enters values in that second page and then goes back to the first one. The user should be allowed to continue entering values and the original

[Wicket-user] feedback panel with a header

2006-07-21 Thread Alexei Sokolov
Hello,What's the best way to create a feedback panel which has a header, i.e. it looks like this:Please correct the following problems:- field a is missing- field b is missingThe problem is it is not possible to set a header for wicket.markup.html.panel.FeedbackPanel. Maybe I'm missing something,

Re: [Wicket-user] feedback panel with a header

2006-07-22 Thread Alexei Sokolov
How do I show/hide both of them depending on availability of feedback messages?AlexOn 7/21/06, Igor Vaynberg [EMAIL PROTECTED] wrote:you can embed the feedbackpanel in another panel that has the header :) -IgorOn 7/21/06, Alexei Sokolov [EMAIL PROTECTED] wrote: Hello,What's the best way

[Wicket-user] AjaxSubmitLink and history

2006-07-26 Thread Alexei Sokolov
Hello,I have small problem with ajaxsubmitlink. I have a page with a form which can be submitted by either a regular button or an ajaxsubmitlink. In onSubmit method of ajaxsubmitlink I update the form's model and display updated fields using AjaxRequestTarget.addComponent(). Regular button takes

Re: [Wicket-user] AjaxSubmitLink and history

2006-07-28 Thread Alexei Sokolov
it might be... Are you absolutelysure the models are updated with those ajax request? Does the inputvalidate?EelcoOn 7/26/06, Alexei Sokolov [EMAIL PROTECTED] wrote: Hello, I have small problem with ajaxsubmitlink. I have a page with a form which can be submitted by either a regular button

Re: [Wicket-user] AjaxSubmitLink and history

2006-07-31 Thread Alexei Sokolov
Matej knows more about that. johan On 7/26/06, *Alexei Sokolov * [EMAIL PROTECTED] mailto: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hello, I have small problem with ajaxsubmitlink. I have a page with a form which can be submitted by either a regular button

[Wicket-user] generating e-mail reports with wicket

2006-08-03 Thread Alexei Sokolov
Hello,I would like to reuse some of the components I have to generate e-mail reports. Is it possible? Thank you,Alex - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the

Re: [Wicket-user] generating e-mail reports with wicket

2006-08-04 Thread Alexei Sokolov
for interaction, something you don't need when creating email messages. Eelco On 8/3/06, Alexei Sokolov [EMAIL PROTECTED] wrote: Hello, I would like to reuse some of the components I have to generate e-mail reports. Is it possible? Thank you, Alex

Re: [Wicket-user] generating e-mail reports with wicket

2006-08-04 Thread Alexei Sokolov
cycle. AlexOn 8/4/06, Alexei Sokolov [EMAIL PROTECTED] wrote: Well, for some reason I cannot render a page using MockupWebApplication. I get an exception saying that all components on the page failed to render. Log file, however, says that every one of them was rendered. I think that the problem lies

Re: [Wicket-user] generating e-mail reports with wicket

2006-08-04 Thread Alexei Sokolov
, and then resume the original request cycle. AlexOn 8/4/06, Alexei Sokolov [EMAIL PROTECTED] wrote: Well, for some reason I cannot render a page using MockupWebApplication. I get an exception saying that all components on the page failed to render. Log file, however, says that every one of them was rendered. I

Re: [Wicket-user] generating e-mail reports with wicket

2006-08-04 Thread Alexei Sokolov
For Application Session you have set() methods. So, you can backup current values and then restore them.AlexOn 8/4/06, Igor Vaynberg [EMAIL PROTECTED] wrote:request cycle is not the only problem. we have application and session threadlocals as well. -IgorOn 8/4/06, Alexei Sokolov [EMAIL

Re: [Wicket-user] generating e-mail reports with wicket

2006-08-04 Thread Alexei Sokolov
And if you can do it in 1.2.2 it would be great.AlexOn 8/4/06, Igor Vaynberg [EMAIL PROTECTED] wrote:we can add a set() to request cycle as well :) -IgorOn 8/4/06, Alexei Sokolov [EMAIL PROTECTED] wrote: For Application Session you have set() methods. So, you can backup current values

[Wicket-user] html compression (whitespace removal)

2006-08-04 Thread Alexei Sokolov
Hi All,Is it possible to remove unnecessary whitespaces (end-of-line space characters) from wicket output without changing original templates? I'm sorry if this question was answered before...Alex - Take Surveys. Earn Cash.

Re: [Wicket-user] Custom date component...

2006-10-10 Thread Alexei Sokolov
I noticed that this component uses current date as default value. Is it possible to modify it so if one of the fields is not selected the component fails validation?Thank you,Alex On 9/8/06, Andrew Lombardi [EMAIL PROTECTED] wrote: On Sep 7, 2006, at 3:09 PM, Erik Brakkee wrote: Andrew Lombardi

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-21 Thread Alexei Sokolov
Actually, There is a sysdeo tomcat plugin for eclipse which can be configured with a special 'devloader' classloader. With this config you'll see changes right after you saved your java source. But it won't help with nice urls ;) Alex On 11/21/06, Eelco Hillenius [EMAIL PROTECTED] wrote:

[Wicket-user] grouping of components with repeaters

2007-02-19 Thread Alexei Sokolov
Hello, I'm sorry if this subject was discussed before... if so please point me in the right direction. Here is my problem: I'm using IDataProvider interface from wicket extensions package to load set of data from database. The data has the following format: group1, field11, field12, field13,

Re: [Wicket-user] grouping of components with repeaters

2007-02-19 Thread Alexei Sokolov
the other one for outputting group header and footer and the other one inside that one to output the rows in between. -igor On 2/19/07, Alexei Sokolov [EMAIL PROTECTED] wrote: Hello, I'm sorry if this subject was discussed before... if so please point me in the right direction. Here is my

Re: [Wicket-user] grouping of components with repeaters

2007-02-20 Thread Alexei Sokolov
)) { nextgroup=rows.geT(i).getgroup(); break; } } return nextgroup; } } think of it as a filtered iterator :) -igor On 2/19/07, Alexei Sokolov [EMAIL PROTECTED] wrote: Igor, In this case outer repeater will have to iterate over groups, and I don't know

[Wicket-user] ajax / javascript widgets in wicket

2007-04-12 Thread Alexei Sokolov
Hello guys, I have a question about designing ajax/javascript widgets using wicket. Here is my problem: I have a form, which I submit using ajax submit button and I have a list view like this: ul li wicket:id=itemblah/li /ul What I want to do is: - add a new li element to the list (but

Re: [Wicket-user] ajax / javascript widgets in wicket

2007-04-13 Thread Alexei Sokolov
- you can however still do it if you provide a own ListView implementation. -- *Von:* [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] *Im Auftrag von *Alexei Sokolov *Gesendet:* Freitag, 13. April 2007 18:14 *An:* [EMAIL PROTECTED] *Betreff:* Re: [Wicket-user] ajax

Re: [Wicket-user] ajax / javascript widgets in wicket

2007-04-13 Thread Alexei Sokolov
It is not a big problem, because I can take care of namespaces myself in the javascript (good example of using namespaces in javascipt - dojo or yui). However, since the framework takes care of component resources, it can take care of javascript namespaces as well. This has nothing to do with

Re: [Wicket-user] ajax / javascript widgets in wicket

2007-04-13 Thread Alexei Sokolov
compatibility function aliases) is namespaced Wicket. As for custom components, wicket can't parse your javascript and namespace each identifier. -Matej On 4/14/07, Alexei Sokolov [EMAIL PROTECTED] wrote: It is not a big problem, because I can take care of namespaces myself in the javascript

Re: [Wicket-user] BookmarkablePageLink converts String parameters to String[]? (Wicket 1.2.6)

2007-05-14 Thread Alexei Sokolov
I'm not sure if this is related issue, but here it goes: I have a bookmarkable page with page parameters that is mounted using QueryStringUrlCodingStrategy. If I open a link to this page in a new browser window, it works fine. However, if I try to open the same link in another tab, wicket