Re: [Wicket-user] AjaxTabbedPanel: placing panels in a separate target

2007-04-03 Thread Julian Klappenbach

That something similar would be two separate components that are designed
together, say a ListView to populate a  with ajax links, each link would
then swap between a set of panels?  It would be nice to have it all wrapped
up into a single class, however, from the gist of it, a single class derives
from a single component, and therefore would be limited to a single markup
target.  Am I correct here?

On 4/2/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote:


sounds like what you want is not an encapsulated tab panel like what we
have. see the sourcecode to ours, it is trivial. that will give you the idea
of how to implement something similar that will be a better fit to your
usecase.

-igor


On 4/2/07, Julian Klappenbach <[EMAIL PROTECTED]> wrote:
>
> Provide my own markup file...  Hmmm...  Ideally, I'd specify a div or
> span with a wicket:id in another area of the page markup, and have that id
> set as the target for panels.  Can you give me a little more direction on
> this?  This is my first project with wicket.
>
> On 4/2/07, Igor Vaynberg < [EMAIL PROTECTED]> wrote:
> >
> > you can subclass ajaxtabbedpanel and provide your own markup file.
> > just make sure wicket-component-wise the nesting is the same as in the
> > original
> >
> > -igor
> >
> >
> > On 4/2/07, Julian Klappenbach <[EMAIL PROTECTED]> wrote:
> >
> > >  I have an application where the tabs run vertically down the left
> > > side, which are meant to change the content of a larger, central panel.  
Out
> > > of the box, AjaxTabbedPanel assumes that the tabs are to sit vertically
> > > above the panel (the panel is automatically created).
> > >
> > > Is there a different approach I should be taking, or is there a way
> > > that I can subclass AjaxTabbedPanel to get the desired behavior?
> > >
> > > -jjk
> > >
> > >
> > > -
> > > Take Surveys. Earn Cash. Influence the Future of IT
> > > Join SourceForge.net's Techsay panel and you'll get the chance to
> > > share your
> > > opinions on IT & business topics through brief surveys-and earn cash
> > >
> > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > > ___
> > > Wicket-user mailing list
> > > Wicket-user@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/wicket-user
> > >
> > >
> >
> >
> > -
> > Take Surveys. Earn Cash. Influence the Future of IT
> > Join SourceForge.net's Techsay panel and you'll get the chance to
> > share your
> > opinions on IT & business topics through brief surveys-and earn cash
> >
> > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
> >
>
>
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share
> your
> opinions on IT & business topics through brief surveys-and earn cash
>
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Multiple Modal Windows (sunraider)

2007-04-03 Thread Matej Knopp
what version of wicket are you using?

On 4/3/07, tooy li(Gmail) <[EMAIL PROTECTED]> wrote:
> no,it's still here today, :P
> >
> > i believe martijn already fixed this a few days ago
> >
> > -igor
> >
> >
> > On 4/2/07, Stefan Lindner <[EMAIL PROTECTED]> wrote:
> >>
> >> I think this is a general IE problem. The ModalWindow maintainers have
> >> taken care of this only for one level (modal window opended on a normal
> >> window). In this case all dropdowns are hidden befere the model window 
> >> opens
> >> and re-displayed afterwards.
> >> This was an error message 2 or 3 weeks before but the wickt gurus only
> >> stated "crazy what people are doing with wicket" :-)
> >> If work around this problem by hiding the dropdowns and re-displying them
> >> by myself. I use some code like
> >>
> >>
> >> private List visibilityBeforeHide;
> >>
> >> private ListhideThemBefore;
> >>
> >> if (visibilityBeforeHide == null)
> >>
> >>visibilityBeforeHide = new ArrayList();
> >>
> >> else
> >>
> >>visibilityBeforeHide.clear();
> >>
> >> for (Component c : hideThemBefore) {
> >>
> >>visibilityBeforeHide.add(c.isVisible());
> >>
> >>c.setVisible(false);
> >>
> >>target.addComponent(c);
> >>
> >> }
> >>
> >>
> >>
> >> modalWindow.setWindowClosedCallback(new ModalWindow.WindowClosedCallback()
> >> {
> >>
> >>private static final long serialVersionUID = 1L;
> >>
> >>public void onClose(AjaxRequestTarget target) {
> >>
> >>int i = 0;
> >>
> >>for (Component c : hideThemBefore) {
> >>
> >>   c.setVisible(visibilityBeforeHide.get(i).booleanValue());
> >>
> >>   target.addComponent(c);
> >>
> >>   i++;
> >>
> >>}
> >>
> >>// You must add the parent panel (the panel that opende the popup
> >> window) to the target
> >>
> >>// The components will not be re-displayed otherwise.
> >>
> >>target.addComponent();
> >>
> >> }
> >>
> >> modalWindow.show(target);
> >>
> >>
> >>
> >>
> >>
> >> > I am having a strange problem in IE 6.0 with modal windows. The use case
> >> > follows:
> >> > I have one modal window with drop downs and I have another modal window
> >> > called from first modal window, when the second modal window opens I can
> >> see
> >> > the drop downs from the first modal window in the second. I have tried
> >> > setting the cookie name, but no change. The same works on IE 7.0 and
> >> Mozilla
> >> > 2.0. I am unable to figure out the issue. Has someone encountered the
> >> same
> >> > issue, please help me.
> >> >
> >> > Thanks,
> >> > Sajeev
> >>
> >>
> >> -
> >> Take Surveys. Earn Cash. Influence the Future of IT
> >> Join SourceForge.net's Techsay panel and you'll get the chance to share
> >> your
> >> opinions on IT & business topics through brief surveys-and earn cash
> >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> >> ___
> >> Wicket-user mailing list
> >> Wicket-user@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
> >>
> >>
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Adding code to moveUpLink, moveDownLink and removeLink on ListView

2007-04-03 Thread Andrew Moore

Hi,
I've got a listView which I'm using moveUpLink, moveDownLink and removeLink
on.

Is there any way to be able to add my own code to run when these links are
clicked.

So for example, I'm wanting to store an Order_Id on a database which I would
like to get updated when the moveUp / moveDown link is clicked.

At the moment I have a save button on the page that does the database update
functionality, but I'm really wanting the db update to happen when the move
links are clicked.
Cheers
Andrew
-- 
View this message in context: 
http://www.nabble.com/Adding-code-to-moveUpLink%2C-moveDownLink-and-removeLink-on-ListView-tf3510279.html#a9805075
Sent from the Wicket - User mailing list archive at Nabble.com.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Radio.getValue?

2007-04-03 Thread Nino Wael
|ichoicerenderer exists for two reasons. one is to generate an id so 
that a specific imodel can be picked out of a list of imodels. two so that you 
can convert model object into some user string to display to the user. NEITHER 
|of these apply to radio, so radio will not have an ichoicerenderer. 

I see your point, and am aware that it's just not the logical place to 
implement it. I guess RadioGroup/checkgroup would be a better place?


|no it wouldnt be a better place. 


|yes, you are not meant to have control over it - it is an 
implementation detail of that component.

Well again correct, radiogroup/checkgroup seems a better place. I might 
have been a little slow here.


|once again, no. the choice renderer simply doesnt apply to these components.

Come on, a little better would it be. Since radiogroup contains radios. So it 
is a kind of container. But in the sense that it arent just possible to 
implement the change without some changes youre right. And in fact i guess if 
we change it too much we would just end up with the RadioChoice component. 
Which already takes an ichoicerenderer.
 
I am using Jmeter, but the whole trouble originates by that data are changeing. 
And in production it would not make sense for it to remain stable, but some of 
it are stable and this is what we are wanting to test. Currently we have agreed 
that we only run one test (orginal we had 15 individual tests) which needs to 
be recreated / or manipulated with the correct radio id's. Im wondering since 
no one else seems to have these problems, they have either not used the radio / 
check components or does not performance test this way? Is this an uncommon way 
to performance test over time?
 
 
regards Nino



Fra: [EMAIL PROTECTED] på vegne af Igor Vaynberg
Sendt: ma 02-04-2007 20:13
Til: wicket-user@lists.sourceforge.net
Emne: Re: [Wicket-user] Radio.getValue?


On 4/2/07, Nino Wael <[EMAIL PROTECTED]> wrote: 

|ichoicerenderer exists for two reasons. one is to generate an id so 
that a specific imodel can be picked out of a list of imodels. two so that you 
can convert model object into some user string to display to the user. NEITHER 
|of these apply to radio, so radio will not have an ichoicerenderer. 

I see your point, and am aware that it's just not the logical place to 
implement it. I guess RadioGroup/checkgroup would be a better place?


no it wouldnt be a better place. 



|yes, you are not meant to have control over it - it is an 
implementation detail of that component.

Well again correct, radiogroup/checkgroup seems a better place. I might 
have been a little slow here.


once again, no. the choice renderer simply doesnt apply to these components.


perhaps what you should work on is running jmeter, or whatever you use, over a 
stable dataset. the way these components work are deterministic - so same test 
over same data should produce same html 

-igor



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Radio.getValue?

2007-04-03 Thread Peter Thomas

Hi Nino,

Sorry I was not following this thread from the start - but recently I had
some success using JMeter for testing a wicket application by using the
regular expression support built into JMeter.  My test script actually can
use the "wicket:id" values and so far I'm getting good results.

Let me know if you need more details.

Thanks,

Peter.

On 4/3/07, Nino Wael <[EMAIL PROTECTED]> wrote:



I am using Jmeter, but the whole trouble originates by that data are
changeing. And in production it would not make sense for it to remain
stable, but some of it are stable and this is what we are wanting to test.
Currently we have agreed that we only run one test (orginal we had 15
individual tests) which needs to be recreated / or manipulated with the
correct radio id's. Im wondering since no one else seems to have these
problems, they have either not used the radio / check components or does not
performance test this way? Is this an uncommon way to performance test over
time?


regards Nino

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Radio.getValue?

2007-04-03 Thread Nino Wael
We also can test without trouble, as long as the underlying data does not 
change. I guess this depends on how the application are built.
 
But if you have something to add, we have created an entry on the wiki please 
feel free to add stuff to it.
 
http://cwiki.apache.org/WICKET/wicket-and-jmeter.html
 
 
regards Nino



Fra: [EMAIL PROTECTED] på vegne af Peter Thomas
Sendt: ti 03-04-2007 10:43
Til: wicket-user@lists.sourceforge.net
Emne: Re: [Wicket-user] Radio.getValue?


Hi Nino,

Sorry I was not following this thread from the start - but recently I had some 
success using JMeter for testing a wicket application by using the regular 
expression support built into JMeter.  My test script actually can use the 
"wicket:id" values and so far I'm getting good results. 

Let me know if you need more details.

Thanks,

Peter.


On 4/3/07, Nino Wael <[EMAIL PROTECTED] > wrote:



I am using Jmeter, but the whole trouble originates by that data are 
changeing. And in production it would not make sense for it to remain stable, 
but some of it are stable and this is what we are wanting to test. Currently we 
have agreed that we only run one test (orginal we had 15 individual tests) 
which needs to be recreated / or manipulated with the correct radio id's. Im 
wondering since no one else seems to have these problems, they have either not 
used the radio / check components or does not performance test this way? Is 
this an uncommon way to performance test over time? 


regards Nino




-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Radio.getValue?

2007-04-03 Thread Peter Thomas

Ok, once I manage to get something on the wiki (hopefully soon), I'll notify
the mailing list.

Meanwhile Nino - if you can send me separately a couple of different samples
of HTML of the page you are trying to test, I can have a look to see if I
have a solution using JMeter.

Thanks,

Peter.

On 4/3/07, Nino Wael <[EMAIL PROTECTED]> wrote:


We also can test without trouble, as long as the underlying data does not
change. I guess this depends on how the application are built.

But if you have something to add, we have created an entry on the wiki
please feel free to add stuff to it.

http://cwiki.apache.org/WICKET/wicket-and-jmeter.html


regards Nino



Fra: [EMAIL PROTECTED] på vegne af Peter Thomas
Sendt: ti 03-04-2007 10:43
Til: wicket-user@lists.sourceforge.net
Emne: Re: [Wicket-user] Radio.getValue?


Hi Nino,

Sorry I was not following this thread from the start - but recently I had
some success using JMeter for testing a wicket application by using the
regular expression support built into JMeter.  My test script actually can
use the "wicket:id" values and so far I'm getting good results.

Let me know if you need more details.

Thanks,

Peter.


On 4/3/07, Nino Wael <[EMAIL PROTECTED] > wrote:



I am using Jmeter, but the whole trouble originates by that data
are changeing. And in production it would not make sense for it to remain
stable, but some of it are stable and this is what we are wanting to test.
Currently we have agreed that we only run one test (orginal we had 15
individual tests) which needs to be recreated / or manipulated with the
correct radio id's. Im wondering since no one else seems to have these
problems, they have either not used the radio / check components or does not
performance test this way? Is this an uncommon way to performance test over
time?


regards Nino




-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Pulldown menu and small pop-up dialogs - any suggestions

2007-04-03 Thread Gwyn Evans
Some suggestions came up recently, I think -
http://www.nabble.com/forum/Search.jtp?forum=13974&local=y&query=menu

/Gwyn

On 03/04/07, Peter Thomas <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Do any of the wicket subprojects provide a pulldown menu component?
>
> I'm also interested in creating small HTML pop-up dialogs similar to stuff
> that appears at http://www.macridesweb.com/oltest/ - that
> appear lightweight and feel more like tool-tips.
>
> I'm interested in hearing what other wicket-users are using and what you
> recommend.
>
> Thanks,
>
> Peter.
-- 
Download Wicket 1.2.5 now! - http://wicketframework.org

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Radio.getValue?

2007-04-03 Thread Nino Wael
Before wicket processing or after?
 
the after processing you can see here:
 
prod.jobindsats.dk
 
a user case could be:
 

1.  
select starthjælp from the left menu(this brings you to our wicket 
application in the middle frame)
2.  
select databank radio
3.  
select the Tilbagefald radio
4.  
press the submit button called næste

There are some further steps, but this should make you see what the trouble are 
with the radios, by selecting the tilbagefald radio you also submit the 
page(this populates the info field), after the submit of the page then the 
radios gets new numbers.
 
I also have the jMeter testplan if you want to 
see it?
 
Hmm, it might be easier if I just took a look at your script? Also I dont want 
you to put in too much work on this(theres no need for it, since customer has 
accepted to rebuild the test plan each time).
 
 
regards Nino
 



Fra: [EMAIL PROTECTED] på vegne af Peter Thomas
Sendt: ti 03-04-2007 11:11
Til: wicket-user@lists.sourceforge.net
Emne: Re: [Wicket-user] Radio.getValue?


Ok, once I manage to get something on the wiki (hopefully soon), I'll notify 
the mailing list.

Meanwhile Nino - if you can send me separately a couple of different samples of 
HTML of the page you are trying to test, I can have a look to see if I have a 
solution using JMeter. 

Thanks,

Peter.


On 4/3/07, Nino Wael <[EMAIL PROTECTED]> wrote: 

We also can test without trouble, as long as the underlying data does 
not change. I guess this depends on how the application are built.

But if you have something to add, we have created an entry on the wiki 
please feel free to add stuff to it. 

http://cwiki.apache.org/WICKET/wicket-and-jmeter.html


regards Nino



Fra: [EMAIL PROTECTED] på vegne af Peter Thomas
Sendt: ti 03-04-2007 10:43
Til: wicket-user@lists.sourceforge.net
Emne: Re: [Wicket-user] Radio.getValue?


Hi Nino,

Sorry I was not following this thread from the start - but recently I 
had some success using JMeter for testing a wicket application by using the 
regular expression support built into JMeter.  My test script actually can use 
the "wicket:id" values and so far I'm getting good results. 

Let me know if you need more details.

Thanks,

Peter.


On 4/3/07, Nino Wael <[EMAIL PROTECTED] > wrote:



I am using Jmeter, but the whole trouble originates by that 
data are changeing. And in production it would not make sense for it to remain 
stable, but some of it are stable and this is what we are wanting to test. 
Currently we have agreed that we only run one test (orginal we had 15 
individual tests) which needs to be recreated / or manipulated with the correct 
radio id's. Im wondering since no one else seems to have these problems, they 
have either not used the radio / check components or does not performance test 
this way? Is this an uncommon way to performance test over time? 


regards Nino





-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share 
your 
opinions on IT & business topics through brief surveys-and earn cash

http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV 
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user



<>-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] ajax modal window don't work at the CryptedUrl in the current snapshot

2007-04-03 Thread Matej Knopp
how is this related to modal window ?!

On 4/3/07, tooy li(Gmail) <[EMAIL PROTECTED]> wrote:
> hi,
> when i try the crypted url in the current snap shot , get the below error.
>
> 180953 [btpool0-4] ERROR wicket.RequestCycle - [Ljava.lang.String;
> java.lang.ClassCastException: [Ljava.lang.String;
>  at 
> wicket.protocol.http.request.CryptedUrlWebRequestCodingStrategy$DecodedUrlRequest.getParameter(CryptedUrlWebRequestCodingStrategy.java:458)
>  at 
> wicket.protocol.http.request.AbstractWebRequestCodingStrategy.decode(AbstractWebRequestCodingStrategy.java:102)
>  at 
> wicket.protocol.http.request.CryptedUrlWebRequestCodingStrategy.decode(CryptedUrlWebRequestCodingStrategy.java:107)
>  at wicket.Request.getRequestParameters(Request.java:144)
>  at wicket.RequestCycle.step(RequestCycle.java:1003)
>  at wicket.RequestCycle.steps(RequestCycle.java:1096)
>  at wicket.RequestCycle.request(RequestCycle.java:470)
>  at wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:244)
>  at wicket.protocol.http.WicketFilter.doFilter(WicketFilter.java:122)
>
> I set the crypted url in application like this
> // protected IRequestCycleProcessor newRequestCycleProcessor() {
> //  return new WebRequestCycleProcessor() {
> //   protected IRequestCodingStrategy newRequestCodingStrategy() {
> //return new CryptedUrlWebRequestCodingStrategy(
> //  new WebRequestCodingStrategy());
> //   }
> //  };
> // }
>
> is it i don't set eh crypted url right?
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Closing ModalWindow leaves Text Components "locked"

2007-04-03 Thread Matej Knopp
This happens to me sometimes with multiple modal windows on IE6. But i
can't reproduce it. It looks to be related to the focus preserving
code.

-Matej


On 4/2/07, Matej Knopp <[EMAIL PROTECTED]> wrote:
> This could be problem with modal window, the code changed recently,
> will look at it soon.
>
> -Matej
>
> On 4/2/07, ChuckDeal <[EMAIL PROTECTED]> wrote:
> >
> > 1.3.0 (revision 519912)
> >
> > I had experienced this a while back, but I thought it was my code.  Now, I'm
> > working with the component again and it seems more likely that ModalWindow
> > isn't acting as I would expect.
> >
> > When I close my ModalWindow instance, the TextField and TextArea components
> > are staying in a locked state.  By that, I mean that prior to loading the
> > ModalWindow, I could set the focus, see the cursor, and type data into the
> > textfield.  After closing the ModalWindow, I am unable to visually confirm
> > the act of setting focus because I can't see the cursor and can't type into
> > the field.  However, when showing the AJAX debug window, I can see that when
> > I click on one of these locked fields the debug window reports successfully
> > setting the focus.  DropDownChoice widgets are not affected.
> >
> > Is it possible that the masking that takes place to create the modal effect
> > isn't finishing the re-enable process?  Where should I start looking to
> > debug this?
> >
> > Thanks
> > Chuck
> > --
> > View this message in context: 
> > http://www.nabble.com/Closing-ModalWindow-leaves-Text-Components-%22locked%22-tf3508003.html#a9798110
> > Sent from the Wicket - User mailing list archive at Nabble.com.
> >
> >
> > -
> > Take Surveys. Earn Cash. Influence the Future of IT
> > Join SourceForge.net's Techsay panel and you'll get the chance to share your
> > opinions on IT & business topics through brief surveys-and earn cash
> > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
>

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Strange problem with ModalWindow

2007-04-03 Thread Matej Knopp
Can you please check the latest revision? (for both tomcat and jetty
if possible). It should be fixed.

-Matej

On 4/2/07, Isaac Weng <[EMAIL PROTECTED]> wrote:
> Isaac Weng wrote:
> > Hi,
> >
> >The problem happens after upgrading to 1.3.0-SNAPSHOT on 1 April.
> >
> >I have a right panel replaced by another panel with ajax tabs by
> > click on a link in the left panel. In the second tab, there's a button
> > which will open a modal window when clicked. The problem is that
> > sometimes an exception threw after the button clicked or during modal
> > window redering, which is the cause I'm not sure. The strange part is
> > the exception isn't thrown every time, and I can't find a right way to
> > reproduce it. In Jetty, it's a EofException, however in Tomcat it says
> > "Broken pipe". No refresh or any link is clicked while rendering the
> > modal window, so I have no idea where "broken pipe" occured from.
> > Also, the problem seems only happens in IE.
>
> Sorry, it's not IE only, just happened on my firefox.
>
>
> Isaac
>
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] ajax refresh don't wok in the current snapshot for 2.0

2007-04-03 Thread Matej Knopp
can you post the stacktrace?

On 4/3/07, tooy li(Gmail) <[EMAIL PROTECTED]> wrote:
> hi,
> I find it cannot work for a repeat viewer and it work well in the previouse 
> version
> the below is my code
> WebMarkupContainer listContainer = new WebMarkupContainer(form,
> "listContainer");
>
>   RepeatingView listView = new RepeatingView(listContainer,
> "dataList");
>
> then open a jax modal window to modify the data , and get the below error in 
> the ajax debug windows.
>
>
> INFO: Response parsed. Now invoking steps...
> INFO: Response processed successfully.
> INFO: Invoking post-call handler(s)...
> INFO:
> INFO: Initiating Ajax GET request on 
> /?wicket:interface=:5:modal_add::IBehaviorListener&wicket:behaviorId=1&random=0.2533879178267413
> INFO: Invoking pre-call handler(s)...
> ERROR: Received Ajax response with code: 500
> INFO: Invoking post-call handler(s)...
> INFO: Invoking failure handler(s)...
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Template page, menu and confirmations pages

2007-04-03 Thread ZedroS Schwart
Hi

I've a template for my pages around a boxborder for the content and a
list for the links to the pages.

All the links are set using BookmarkablePageLink in an html list with
"setAutoEnable(true)" so I don't have to mess around with them.

However, I'm not stuck with the following use case : having to render
a confirmation page on a submit.

How can I show this page without breaking the menu (with the right
entry being unable) ?



On another hand, how can I define different sets of links in the
template page depending on the user profile ? In fact I need a
"dynamic" links list to be shown but I don't know how to do so.

Thanks in advance
ZedroS

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Pro Wicket bugs

2007-04-03 Thread galbu

Hello world I'm a beginner in wicket developing and I need just a little
help:
I'm studying Wicket on Pro Wicket by Karthik Gurumurthy and I have a problem
with
 the BookStore example because the pdf version of the book is incomplete . .
.
 I don't know where I could find the content of these pages: 104-105-107. I
can't find the correct pdf version
of Pro Wicket so if anybody has used this tutorial and could show me these
pages I'll be grate . . .

Thank you all
-- 
View this message in context: 
http://www.nabble.com/Pro-Wicket-bugs-tf3515398.html#a9814696
Sent from the Wicket - User mailing list archive at Nabble.com.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Multiple Modal Windows (sunraider)

2007-04-03 Thread sunraider

Hi Matej,

I am currently using Wicket-1.2.4, and also tried the build 1.2.5 version
from SVN yesterday. It doesn't work in both these versions.

I have also noticed one more issue in 1.2.5, after getting the latest
version from the SVN, the pop ups don't show the images from the images
folder in the context instead tries to get them from alias specified in the
web.xml eg. web.xml entry 
 
WicketApplication
/app/*


The images are tried to be fetched from http://localhost/xyz/app/images
instead of xyz/images. I don't have the trace right now, if needed I will
post it later. I reverted back to 1.2.4 and everything except the pop up
inside a a pop up works fine.

Thanks,
Sajeev



Matej Knopp-2 wrote:
> 
> what version of wicket are you using?
> 
> On 4/3/07, tooy li(Gmail) <[EMAIL PROTECTED]> wrote:
>> no,it's still here today, :P
>> >
>> > i believe martijn already fixed this a few days ago
>> >
>> > -igor
>> >
>> >
>> > On 4/2/07, Stefan Lindner <[EMAIL PROTECTED]> wrote:
>> >>
>> >> I think this is a general IE problem. The ModalWindow maintainers have
>> >> taken care of this only for one level (modal window opended on a
>> normal
>> >> window). In this case all dropdowns are hidden befere the model window
>> opens
>> >> and re-displayed afterwards.
>> >> This was an error message 2 or 3 weeks before but the wickt gurus only
>> >> stated "crazy what people are doing with wicket" :-)
>> >> If work around this problem by hiding the dropdowns and re-displying
>> them
>> >> by myself. I use some code like
>> >>
>> >>
>> >> private List visibilityBeforeHide;
>> >>
>> >> private ListhideThemBefore;
>> >>
>> >> if (visibilityBeforeHide == null)
>> >>
>> >>visibilityBeforeHide = new ArrayList();
>> >>
>> >> else
>> >>
>> >>visibilityBeforeHide.clear();
>> >>
>> >> for (Component c : hideThemBefore) {
>> >>
>> >>visibilityBeforeHide.add(c.isVisible());
>> >>
>> >>c.setVisible(false);
>> >>
>> >>target.addComponent(c);
>> >>
>> >> }
>> >>
>> >>
>> >>
>> >> modalWindow.setWindowClosedCallback(new
>> ModalWindow.WindowClosedCallback()
>> >> {
>> >>
>> >>private static final long serialVersionUID = 1L;
>> >>
>> >>public void onClose(AjaxRequestTarget target) {
>> >>
>> >>int i = 0;
>> >>
>> >>for (Component c : hideThemBefore) {
>> >>
>> >>   c.setVisible(visibilityBeforeHide.get(i).booleanValue());
>> >>
>> >>   target.addComponent(c);
>> >>
>> >>   i++;
>> >>
>> >>}
>> >>
>> >>// You must add the parent panel (the panel that opende the popup
>> >> window) to the target
>> >>
>> >>// The components will not be re-displayed otherwise.
>> >>
>> >>target.addComponent();
>> >>
>> >> }
>> >>
>> >> modalWindow.show(target);
>> >>
>> >>
>> >>
>> >>
>> >>
>> >> > I am having a strange problem in IE 6.0 with modal windows. The use
>> case
>> >> > follows:
>> >> > I have one modal window with drop downs and I have another modal
>> window
>> >> > called from first modal window, when the second modal window opens I
>> can
>> >> see
>> >> > the drop downs from the first modal window in the second. I have
>> tried
>> >> > setting the cookie name, but no change. The same works on IE 7.0 and
>> >> Mozilla
>> >> > 2.0. I am unable to figure out the issue. Has someone encountered
>> the
>> >> same
>> >> > issue, please help me.
>> >> >
>> >> > Thanks,
>> >> > Sajeev
>> >>
>> >>
>> >>
>> -
>> >> Take Surveys. Earn Cash. Influence the Future of IT
>> >> Join SourceForge.net's Techsay panel and you'll get the chance to
>> share
>> >> your
>> >> opinions on IT & business topics through brief surveys-and earn cash
>> >>
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> >> ___
>> >> Wicket-user mailing list
>> >> Wicket-user@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >>
>> >>
>> -
>> Take Surveys. Earn Cash. Influence the Future of IT
>> Join SourceForge.net's Techsay panel and you'll get the chance to share
>> your
>> opinions on IT & business topics through brief surveys-and earn cash
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> ___
>> Wicket-user mailing list
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
> 
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share
> your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.source

Re: [Wicket-user] Multiple Modal Windows (sunraider)

2007-04-03 Thread sunraider

Thank Stefan, I will try this one out.

Sajeev


Stefan Lindner wrote:
> 
> I think this is a general IE problem. The ModalWindow maintainers have
> taken care of this only for one level (modal window opended on a normal
> window). In this case all dropdowns are hidden befere the model window
> opens and re-displayed afterwards.
> This was an error message 2 or 3 weeks before but the wickt gurus only
> stated "crazy what people are doing with wicket" :-)
> If work around this problem by hiding the dropdowns and re-displying them
> by myself. I use some code like 
>  
>  
> private List visibilityBeforeHide;
> 
> private ListhideThemBefore;
> 
> if (visibilityBeforeHide == null)
> 
>visibilityBeforeHide = new ArrayList();
> 
> else
> 
>visibilityBeforeHide.clear();
> 
> for (Component c : hideThemBefore) {
> 
>visibilityBeforeHide.add(c.isVisible());
> 
>c.setVisible(false);
> 
>target.addComponent(c);
> 
> }
> 
>  
> 
> modalWindow.setWindowClosedCallback(new ModalWindow.WindowClosedCallback()
> {
> 
>private static final long serialVersionUID = 1L;
> 
>public void onClose(AjaxRequestTarget target) {
> 
>int i = 0;
> 
>for (Component c : hideThemBefore) {
> 
>   c.setVisible(visibilityBeforeHide.get(i).booleanValue());
> 
>   target.addComponent(c);
> 
>   i++;
> 
>}
> 
>// You must add the parent panel (the panel that opende the popup
> window) to the target
> 
>// The components will not be re-displayed otherwise.
> 
>target.addComponent();
> 
> }
> 
> modalWindow.show(target);
> 
>  
> 
>  
>  
>> I am having a strange problem in IE 6.0 with modal windows. The use case
>> follows:
>> I have one modal window with drop downs and I have another modal window
>> called from first modal window, when the second modal window opens I can
>> see
>> the drop downs from the first modal window in the second. I have tried
>> setting the cookie name, but no change. The same works on IE 7.0 and
>> Mozilla
>> 2.0. I am unable to figure out the issue. Has someone encountered the
>> same
>> issue, please help me.
>>
>> Thanks,
>> Sajeev
> 
> 
>  
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share
> your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Re%3A-Multiple-Modal-Windows-%28sunraider%29-tf3506355.html#a9815983
Sent from the Wicket - User mailing list archive at Nabble.com.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AjaxTabbedPanel: placing panels in a separate target

2007-04-03 Thread Igor Vaynberg

see fragments and panels. an inner panel can still have its own markup

class A extends Panel {
 class B extends Panel {
 }
}

you can have A.html for A and A$B.html for B

-igor


On 4/3/07, Julian Klappenbach <[EMAIL PROTECTED]> wrote:


That something similar would be two separate components that are designed
together, say a ListView to populate a  with ajax links, each link would
then swap between a set of panels?  It would be nice to have it all wrapped
up into a single class, however, from the gist of it, a single class derives
from a single component, and therefore would be limited to a single markup
target.  Am I correct here?

On 4/2/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
>
> sounds like what you want is not an encapsulated tab panel like what we
> have. see the sourcecode to ours, it is trivial. that will give you the idea
> of how to implement something similar that will be a better fit to your
> usecase.
>
> -igor
>
>
> On 4/2/07, Julian Klappenbach < [EMAIL PROTECTED]> wrote:
> >
> > Provide my own markup file...  Hmmm...  Ideally, I'd specify a div or
> > span with a wicket:id in another area of the page markup, and have that id
> > set as the target for panels.  Can you give me a little more direction on
> > this?  This is my first project with wicket.
> >
> > On 4/2/07, Igor Vaynberg < [EMAIL PROTECTED]> wrote:
> > >
> > > you can subclass ajaxtabbedpanel and provide your own markup file.
> > > just make sure wicket-component-wise the nesting is the same as in the
> > > original
> > >
> > > -igor
> > >
> > >
> > > On 4/2/07, Julian Klappenbach <[EMAIL PROTECTED]> wrote:
> > >
> > > >  I have an application where the tabs run vertically down the left
> > > > side, which are meant to change the content of a larger, central panel. 
 Out
> > > > of the box, AjaxTabbedPanel assumes that the tabs are to sit vertically
> > > > above the panel (the panel is automatically created).
> > > >
> > > > Is there a different approach I should be taking, or is there a
> > > > way that I can subclass AjaxTabbedPanel to get the desired behavior?
> > > >
> > > > -jjk
> > > >
> > > >
> > > > 
-
> > > > Take Surveys. Earn Cash. Influence the Future of IT
> > > > Join SourceForge.net's Techsay panel and you'll get the chance to
> > > > share your
> > > > opinions on IT & business topics through brief surveys-and earn
> > > > cash
> > > >
> > > > 
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > > > ___
> > > > Wicket-user mailing list
> > > > Wicket-user@lists.sourceforge.net
> > > > https://lists.sourceforge.net/lists/listinfo/wicket-user
> > > >
> > > >
> > >
> > >
> > > -
> > > Take Surveys. Earn Cash. Influence the Future of IT
> > > Join SourceForge.net's Techsay panel and you'll get the chance to
> > > share your
> > > opinions on IT & business topics through brief surveys-and earn cash
> > >
> > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > > ___
> > > Wicket-user mailing list
> > > Wicket-user@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/wicket-user
> > >
> > >
> >
> >
> > -
> > Take Surveys. Earn Cash. Influence the Future of IT
> > Join SourceForge.net's Techsay panel and you'll get the chance to
> > share your
> > opinions on IT & business topics through brief surveys-and earn cash
> >
> > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
> >
>
>
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share
> your
> opinions on IT & business topics through brief surveys-and earn cash
>
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-

Re: [Wicket-user] Multiple Modal Windows (sunraider)

2007-04-03 Thread Eelco Hillenius
> I am currently using Wicket-1.2.4, and also tried the build 1.2.5 version
> from SVN yesterday. It doesn't work in both these versions.

Do you mean the latest from the 1.2.x branch (1.2.6 in progress) or
the actual 1.2.5?

Eelco

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Adding code to moveUpLink, moveDownLink and removeLink on ListView

2007-04-03 Thread Igor Vaynberg

can you not subclass it and override onclick?

-igor


On 4/3/07, Andrew Moore <[EMAIL PROTECTED]> wrote:



Hi,
I've got a listView which I'm using moveUpLink, moveDownLink and
removeLink
on.

Is there any way to be able to add my own code to run when these links are
clicked.

So for example, I'm wanting to store an Order_Id on a database which I
would
like to get updated when the moveUp / moveDown link is clicked.

At the moment I have a save button on the page that does the database
update
functionality, but I'm really wanting the db update to happen when the
move
links are clicked.
Cheers
Andrew
--
View this message in context:
http://www.nabble.com/Adding-code-to-moveUpLink%2C-moveDownLink-and-removeLink-on-ListView-tf3510279.html#a9805075
Sent from the Wicket - User mailing list archive at Nabble.com.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Template page, menu and confirmations pages

2007-04-03 Thread Igor Vaynberg

On 4/3/07, ZedroS Schwart <[EMAIL PROTECTED]> wrote:


How can I show this page without breaking the menu (with the right
entry being unable) ?



make confirmation dialog be a panel rather then a page. so just replace a
part of the page that has your form with the confirmation panel.

On another hand, how can I define different sets of links in the

template page depending on the user profile ? In fact I need a
"dynamic" links list to be shown but I don't know how to do so.



there are two ways to do it
1) add all possible links and toggle their visibility
2) add only the relevant links into a repeater such as RepeatingView or a
ListView

-igor


Thanks in advance

ZedroS

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AjaxSelfUpdatingTimer, AjaxSubmitButton and ListView

2007-04-03 Thread Igor Vaynberg

i dropped the attached code into my checkedout version of 1.x and it works.

-igor


On 3/23/07, Juha Alatalo <[EMAIL PROTECTED]> wrote:


Hi,

I have following case:
- There is form including IndicatingAjaxSubmitButton
- When button is pressed vector is filled
- Vector is shown in a listView
- ListView contains AjaxSelfUpdatingTimer

Using this combination selfUpdatingTimers are not working. If I have
understood correct, something should be added on  or , but this is not done.

Simplified example case can be found on:
https://download.syncrontech.com/public/wicket-ajaxTimerExample.zip

- Juha


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Multiple Modal Windows (sunraider)

2007-04-03 Thread Matej Knopp
As I said, this is not going to be fixed for 1.2.x brach. The fixes
are for 1.x only, (which will become 1.3).

-Matej

On 4/3/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote:
> > I am currently using Wicket-1.2.4, and also tried the build 1.2.5 version
> > from SVN yesterday. It doesn't work in both these versions.
>
> Do you mean the latest from the 1.2.x branch (1.2.6 in progress) or
> the actual 1.2.5?
>
> Eelco
>
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Pro Wicket bugs

2007-04-03 Thread Korbinian Bachl
It seems to be a series error (mine final PDF also has this, however the
Beta hasn't had it).
I reported this to Karthik, the Author - should be solved soon, 

Regards
 

> -Ursprüngliche Nachricht-
> Von: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] Im Auftrag 
> von galbu
> Gesendet: Dienstag, 3. April 2007 17:23
> An: wicket-user@lists.sourceforge.net
> Betreff: [Wicket-user] Pro Wicket bugs
> 
> 
> Hello world I'm a beginner in wicket developing and I need 
> just a little
> help:
> I'm studying Wicket on Pro Wicket by Karthik Gurumurthy and I 
> have a problem with  the BookStore example because the pdf 
> version of the book is incomplete . .
> .
>  I don't know where I could find the content of these pages: 
> 104-105-107. I can't find the correct pdf version of Pro 
> Wicket so if anybody has used this tutorial and could show me 
> these pages I'll be grate . . .
> 
> Thank you all
> --
> View this message in context: 
> http://www.nabble.com/Pro-Wicket-bugs-tf3515398.html#a9814696
> Sent from the Wicket - User mailing list archive at Nabble.com.
> 
> 
> --
> ---
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the 
> chance to share your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge
&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Pro Wicket bugs

2007-04-03 Thread Marek Přibyl
I reported that to the publisher couple of months ago, and since 
november 1st 2006 the corrected pdf should be ready for download. Try to 
download the pdf again...

marek

galbu napsal(a):
> Hello world I'm a beginner in wicket developing and I need just a little
> help:
> I'm studying Wicket on Pro Wicket by Karthik Gurumurthy and I have a problem
> with
>  the BookStore example because the pdf version of the book is incomplete . .
> .
>  I don't know where I could find the content of these pages: 104-105-107. I
> can't find the correct pdf version
> of Pro Wicket so if anybody has used this tutorial and could show me these
> pages I'll be grate . . .
> 
> Thank you all


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Pro Wicket bugs

2007-04-03 Thread Korbinian Bachl
my pdf is from february 07 -


> -Ursprüngliche Nachricht-
> Von: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] Im Auftrag 
> von Marek Pribyl
> Gesendet: Dienstag, 3. April 2007 21:13
> An: wicket-user@lists.sourceforge.net
> Betreff: Re: [Wicket-user] Pro Wicket bugs
> 
> I reported that to the publisher couple of months ago, and 
> since november 1st 2006 the corrected pdf should be ready for 
> download. Try to download the pdf again...
> 
> marek
> 
> galbu napsal(a):
> > Hello world I'm a beginner in wicket developing and I need just a 
> > little
> > help:
> > I'm studying Wicket on Pro Wicket by Karthik Gurumurthy and 
> I have a 
> > problem with  the BookStore example because the pdf version of the 
> > book is incomplete . .
> > .
> >  I don't know where I could find the content of these pages: 
> > 104-105-107. I can't find the correct pdf version of Pro 
> Wicket so if 
> > anybody has used this tutorial and could show me these 
> pages I'll be 
> > grate . . .
> > 
> > Thank you all
> 
> 
> --
> ---
> Take Surveys. Earn Cash. Influence the Future of IT Join 
> SourceForge.net's Techsay panel and you'll get the chance to 
> share your opinions on IT & business topics through brief 
> surveys-and earn cash 
> http://www.techsay.com/default.php?page=join.php&p=sourceforge
&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Pro Wicket bugs

2007-04-03 Thread Marek Přibyl
hmm, strange, I recieved this message from apress on november 1st:

Sorry for the inconvenience. Can you please redownload the Pro Wicket 
ebook again? The missing page has been recovered now.
--
Roger Yeh
[EMAIL PROTECTED]

ok, anyway, I prepared for you the missing page. download it from: 
http://www.board.cz/pro_wicket_p106.pdf. I hope it will help you...

btw, I think it's good idea to report the problem to apress again...


Korbinian Bachl napsal(a):
> my pdf is from february 07 -
> 
> 
>> -Ursprüngliche Nachricht-
>> Von: [EMAIL PROTECTED] 
>> [mailto:[EMAIL PROTECTED] Im Auftrag 
>> von Marek Pribyl
>> Gesendet: Dienstag, 3. April 2007 21:13
>> An: wicket-user@lists.sourceforge.net
>> Betreff: Re: [Wicket-user] Pro Wicket bugs
>>
>> I reported that to the publisher couple of months ago, and 
>> since november 1st 2006 the corrected pdf should be ready for 
>> download. Try to download the pdf again...
>>
>> marek
>>
>> galbu napsal(a):
>>> Hello world I'm a beginner in wicket developing and I need just a 
>>> little
>>> help:
>>> I'm studying Wicket on Pro Wicket by Karthik Gurumurthy and 
>> I have a 
>>> problem with  the BookStore example because the pdf version of the 
>>> book is incomplete . .
>>> .
>>>  I don't know where I could find the content of these pages: 
>>> 104-105-107. I can't find the correct pdf version of Pro 
>> Wicket so if 
>>> anybody has used this tutorial and could show me these 
>> pages I'll be 
>>> grate . . .
>>>
>>> Thank you all
>>
>> --
>> ---
>> Take Surveys. Earn Cash. Influence the Future of IT Join 
>> SourceForge.net's Techsay panel and you'll get the chance to 
>> share your opinions on IT & business topics through brief 
>> surveys-and earn cash 
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge
> &CID=DEVDEV
>> ___
>> Wicket-user mailing list
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
> 
> 
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 

-- 
Marek Pribyl
3v.cz s.r.o.
Tusarova 1263/7, 170 00 Praha 7
e-mail:  [EMAIL PROTECTED]
telefon: +420-608-325-283
telefax: +420-603-460-006

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Pro Wicket bugs

2007-04-03 Thread Gwyn Evans
Mine was missing some of the pages, but I've just re-downloaded it and
the new version has them (at least 102-108, anyway).

/Gwyn

On 03/04/07, Marek Přibyl <[EMAIL PROTECTED]> wrote:
> hmm, strange, I recieved this message from apress on november 1st:
>
> Sorry for the inconvenience. Can you please redownload the Pro Wicket
> ebook again? The missing page has been recovered now.
> --
> Roger Yeh
> [EMAIL PROTECTED]
>
> ok, anyway, I prepared for you the missing page. download it from:
> http://www.board.cz/pro_wicket_p106.pdf. I hope it will help you...
>
> btw, I think it's good idea to report the problem to apress again...
>
>
> Korbinian Bachl napsal(a):
> > my pdf is from february 07 -
> >
> >
> >> -Ursprüngliche Nachricht-
> >> Von: [EMAIL PROTECTED]
> >> [mailto:[EMAIL PROTECTED] Im Auftrag
> >> von Marek Pribyl
> >> Gesendet: Dienstag, 3. April 2007 21:13
> >> An: wicket-user@lists.sourceforge.net
> >> Betreff: Re: [Wicket-user] Pro Wicket bugs
> >>
> >> I reported that to the publisher couple of months ago, and
> >> since november 1st 2006 the corrected pdf should be ready for
> >> download. Try to download the pdf again...
> >>
> >> marek
> >>
> >> galbu napsal(a):
> >>> Hello world I'm a beginner in wicket developing and I need just a
> >>> little
> >>> help:
> >>> I'm studying Wicket on Pro Wicket by Karthik Gurumurthy and
> >> I have a
> >>> problem with  the BookStore example because the pdf version of the
> >>> book is incomplete . .
> >>> .
> >>>  I don't know where I could find the content of these pages:
> >>> 104-105-107. I can't find the correct pdf version of Pro
> >> Wicket so if
> >>> anybody has used this tutorial and could show me these
> >> pages I'll be
> >>> grate . . .
> >>>
> >>> Thank you all
> >>
> >> --
> >> ---
> >> Take Surveys. Earn Cash. Influence the Future of IT Join
> >> SourceForge.net's Techsay panel and you'll get the chance to
> >> share your opinions on IT & business topics through brief
> >> surveys-and earn cash
> >> http://www.techsay.com/default.php?page=join.php&p=sourceforge
> > &CID=DEVDEV
> >> ___
> >> Wicket-user mailing list
> >> Wicket-user@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
> >>
> >
> >
> > -
> > Take Surveys. Earn Cash. Influence the Future of IT
> > Join SourceForge.net's Techsay panel and you'll get the chance to share your
> > opinions on IT & business topics through brief surveys-and earn cash
> > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
>
> --
> Marek Pribyl
> 3v.cz s.r.o.
> Tusarova 1263/7, 170 00 Praha 7
> e-mail:  [EMAIL PROTECTED]
> telefon: +420-608-325-283
> telefax: +420-603-460-006
>
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>


-- 
Download Wicket 1.2.5 now! - http://wicketframework.org
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Palette with sorted elements

2007-04-03 Thread Flavia Paganelli
Hi!

Did anyone have to use a Palette component showing the elements in a 
sorted way (e.g. using a comparator, or the compareTo() method)?

I tried providing a SortedSet to the Palette (a TreeSet), but that 
doesn't work... I guess the Palette internally uses its own List or 
something of that kind.

Any ideas?

Thank you!

Flavia

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Adding code to moveUpLink, moveDownLink and removeLink on ListView

2007-04-03 Thread Johan Compagner
i had today exatly the same thing, but then withe the ajaxpaging
navigator. i want to do one thing more when a page link is clicked.
because we dont have listeners i had to extend navigator then the
navigation and then override all the link create methods and also
subclass them at these times listeners would be a great thing

On 4/3/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
> can you not subclass it and override onclick?
>
> -igor
>
>
> On 4/3/07, Andrew Moore <[EMAIL PROTECTED]> wrote:
> >
> >
> > Hi,
> > I've got a listView which I'm using moveUpLink, moveDownLink and
> > removeLink
> > on.
> >
> > Is there any way to be able to add my own code to run when these links are
> > clicked.
> >
> > So for example, I'm wanting to store an Order_Id on a database which I
> > would
> > like to get updated when the moveUp / moveDown link is clicked.
> >
> > At the moment I have a save button on the page that does the database
> > update
> > functionality, but I'm really wanting the db update to happen when the
> > move
> > links are clicked.
> > Cheers
> > Andrew
> > --
> > View this message in context:
> >
> http://www.nabble.com/Adding-code-to-moveUpLink%2C-moveDownLink-and-removeLink-on-ListView-tf3510279.html#a9805075
> > Sent from the Wicket - User mailing list archive at Nabble.com.
> >
> >
> > -
> > Take Surveys. Earn Cash. Influence the Future of IT
> > Join SourceForge.net's Techsay panel and you'll get the chance to share
> > your
> > opinions on IT & business topics through brief surveys-and earn cash
> > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
>

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Palette with sorted elements

2007-04-03 Thread Igor Vaynberg

you can try overriding onchange of the right select box and sorting in
javascript.

-igor


On 4/3/07, Flavia Paganelli <[EMAIL PROTECTED]> wrote:


Hi!

Did anyone have to use a Palette component showing the elements in a
sorted way (e.g. using a comparator, or the compareTo() method)?

I tried providing a SortedSet to the Palette (a TreeSet), but that
doesn't work... I guess the Palette internally uses its own List or
something of that kind.

Any ideas?

Thank you!

Flavia

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] my portfolio

2007-04-03 Thread Ernie
Hi,

My name is Ernie; I may not have the right email address. 
If not please excuse my intrusion. If you are interested
in some web design work for your company

Please click the link below to see my portfolio;
http://www.webdesignserviceconsulting.com/intro.html

Thanks,
Ernie 



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Strange problem with ModalWindow

2007-04-03 Thread Isaac Weng
Hi,
Just update to the latest version, and it works great.

Thanks for such a quick fix.

Isaac

Matej Knopp wrote:
> Can you please check the latest revision? (for both tomcat and jetty
> if possible). It should be fixed.
>
> -Matej
>
> On 4/2/07, Isaac Weng <[EMAIL PROTECTED]> wrote:
>   
>> Isaac Weng wrote:
>> 
>>> Hi,
>>>
>>>The problem happens after upgrading to 1.3.0-SNAPSHOT on 1 April.
>>>
>>>I have a right panel replaced by another panel with ajax tabs by
>>> click on a link in the left panel. In the second tab, there's a button
>>> which will open a modal window when clicked. The problem is that
>>> sometimes an exception threw after the button clicked or during modal
>>> window redering, which is the cause I'm not sure. The strange part is
>>> the exception isn't thrown every time, and I can't find a right way to
>>> reproduce it. In Jetty, it's a EofException, however in Tomcat it says
>>> "Broken pipe". No refresh or any link is clicked while rendering the
>>> modal window, so I have no idea where "broken pipe" occured from.
>>> Also, the problem seems only happens in IE.
>>>   
>> Sorry, it's not IE only, just happened on my firefox.
>>
>>
>> Isaac
>> 

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] ajax modal window don't work at the CryptedUrl in the current snapshot

2007-04-03 Thread tooy li(Gmail)

Y, it's only happen when i use a ajax link to open a modal window.
> how is this related to modal window ?!
> 
> On 4/3/07, tooy li(Gmail) <[EMAIL PROTECTED]> wrote:
>> hi,
>> when i try the crypted url in the current snap shot , get the below error.
>>
>> 180953 [btpool0-4] ERROR wicket.RequestCycle - [Ljava.lang.String;
>> java.lang.ClassCastException: [Ljava.lang.String;
>>  at 
>> wicket.protocol.http.request.CryptedUrlWebRequestCodingStrategy$DecodedUrlRequest.getParameter(CryptedUrlWebRequestCodingStrategy.java:458)
>>  at 
>> wicket.protocol.http.request.AbstractWebRequestCodingStrategy.decode(AbstractWebRequestCodingStrategy.java:102)
>>  at 
>> wicket.protocol.http.request.CryptedUrlWebRequestCodingStrategy.decode(CryptedUrlWebRequestCodingStrategy.java:107)
>>  at wicket.Request.getRequestParameters(Request.java:144)
>>  at wicket.RequestCycle.step(RequestCycle.java:1003)
>>  at wicket.RequestCycle.steps(RequestCycle.java:1096)
>>  at wicket.RequestCycle.request(RequestCycle.java:470)
>>  at wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:244)
>>  at wicket.protocol.http.WicketFilter.doFilter(WicketFilter.java:122)
>>
>> I set the crypted url in application like this
>> // protected IRequestCycleProcessor newRequestCycleProcessor() {
>> //  return new WebRequestCycleProcessor() {
>> //   protected IRequestCodingStrategy newRequestCodingStrategy() {
>> //return new CryptedUrlWebRequestCodingStrategy(
>> //  new WebRequestCodingStrategy());
>> //   }
>> //  };
>> // }
>>
>> is it i don't set eh crypted url right?
>> -
>> Take Surveys. Earn Cash. Influence the Future of IT
>> Join SourceForge.net's Techsay panel and you'll get the chance to share your
>> opinions on IT & business topics through brief surveys-and earn cash
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> ___
>> Wicket-user mailing list
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
> 
> 
> 
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] ajax refresh don't wok in the current snapshot for 2.0

2007-04-03 Thread tooy li(Gmail)
hi, I think i don't need ajax refresh it now, thx.

> 
> can you post the stacktrace?
> 
> On 4/3/07, tooy li(Gmail) <[EMAIL PROTECTED]> wrote:
>> hi,
>> I find it cannot work for a repeat viewer and it work well in the previouse 
>> version
>> the below is my code
>> WebMarkupContainer listContainer = new WebMarkupContainer(form,
>> "listContainer");
>>
>>   RepeatingView listView = new RepeatingView(listContainer,
>> "dataList");
>>
>> then open a jax modal window to modify the data , and get the below error in 
>> the ajax debug windows.
>>
>>
>> INFO: Response parsed. Now invoking steps...
>> INFO: Response processed successfully.
>> INFO: Invoking post-call handler(s)...
>> INFO:
>> INFO: Initiating Ajax GET request on 
>> /?wicket:interface=:5:modal_add::IBehaviorListener&wicket:behaviorId=1&random=0.2533879178267413
>> INFO: Invoking pre-call handler(s)...
>> ERROR: Received Ajax response with code: 500
>> INFO: Invoking post-call handler(s)...
>> INFO: Invoking failure handler(s)...
>> -
>> Take Surveys. Earn Cash. Influence the Future of IT
>> Join SourceForge.net's Techsay panel and you'll get the chance to share your
>> opinions on IT & business topics through brief surveys-and earn cash
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> ___
>> Wicket-user mailing list
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
> 
> 
> 
> --
> 
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] XSD / Validation

2007-04-03 Thread Dmitry Kandalov


Johannes Schneider-3 wrote:
> 
> Hi,
> 
> I am new to Wicket and want to use XHTML and validate the files. I use 
> IntelliJ Idea but I could not succeed in validating. I run into two 
> problems:
> - I did not find any "wicket.xsd"? I just found a DTD, but I don't know 
> how I should use it.
> 

I use this header:
http://www.w3.org/1999/xhtml";
xmlns:wicket="http://wicket.sourceforge.net";>
where "http://wicket.sourceforge.net"; is mapped to hand written xsd with
wicket tags. Something like: 







...


And wicket:id is added to custom html tags.

ps I tried to use DTD that comes with wicket, but it seems it's not enough
for IDEA
-- 
View this message in context: 
http://www.nabble.com/XSD---Validation-tf3488923.html#a9830979
Sent from the Wicket - User mailing list archive at Nabble.com.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user