Title: Trouble with characters: Æ Ø Å
Hi
Im having a bit of a trouble using wicket with Danish characters, they do not get displayed correctly the first time a page is displayed on postbacks the show like supposed to.
I’ve buildt a very simple example based on the Quickstart tutorial for e
haven't checked your markup. But wicket defaults to utf-8. The most
> > common mistake is that people don't store the markup in utf-8 even
> > though they put or in the markup.
> >
> > Juergen
> >
> > On 2/21/06, Nino Wael <[EMAIL PROTECTED]> wrote:
&
Title: RadioButtons with a twist?
Hi
Im currently trying to figure out how to implement radiobutton with additional information meaning that I have somesort of control which carries a ID, short text and descriptive information for the radio button, I’ve seen something about having the custo
Title: Listview: cannot instantiate the type
Hi
Im having trouble instantiateing the Listview control, I get the error ”Cannot Instiantiate the type ListView”. This is within these lines the errors occur:
private wicket.markup.html.list.ListView myList;
…
List forklaring = Array
public void populateItem(ListItem item) {
// add stuff to item.
}
};
On 2/23/06, Nino Wael <[EMAIL PROTECTED]> wrote:
Hi
Im having trouble instantiateing the Listview control, I get the error "Cannot Instiantiate
the type ListView" . This is within these lines
l("name", new PropertyModel(
item.getModelObject(), "name")));
}
In your case that would be:
protected void populateItem(ListItem item) {
item.add(new Label("name",
item.getModelObjectAsString()));
}
and in the markup:
text
goes here
Martijn
On 2/23/06, N
forlobdescription
Forlob pr
berortdescription
Martijn
On 2/23/06, Nino Wael <[EMAIL PROTECTED]> wrote:
Very nice, bringing my mind back to the mail I
wrote earlier(radio buttons with a twist) I guess I then could do the
following, code might not be 100% accurate:
List maalinger = Arrays.
When I resaved the markup in UTF-8 chars were displayed correctly.
-Nino
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Piotr Bzdyl
Sent: Tuesday, February 21, 2006 10:14 PM
To: wicket-user@lists.sourceforge.net
Subject: [Wicket-user] Re: [Wicket-user] T
Title: Wicket Requirements?
I’ve tried to look on the wicket home page to see what the minimum requirements are for wicket, but haven’t been able to find any clear message.
Any one who know what they are? Im thinking of Java version and such, does it run with Tomcat 4.1.18?
Regards Nino
Hi
Im having some trouble getting my onsubmit to work, looking at one of the
simple examples it looks like im doing the right thing(ive been looking at
http://www.wicket-library.com/wicket-examples/signin).
So hints on what im doing wrong and possible howto fix it will be much
appreciated.
Title: submitting wicket examples
Hi
Im in the mist of developing a bunch of controls for wicket, one for example will be able to populate a listbox based on the selection of another listbox. I guess this is something that could be of interest for the typical wicket user. So how do I submit
ag <[EMAIL PROTECTED]> wrote:
> You send them to me and I'll add them to either wicket-examples or
> wicket-contrib-examples. And I'll deploy them on wicket-library.
>
> Juergen
>
> On 3/3/06, Nino Wael <[EMAIL PROTECTED]> wrote:
> >
> >
> > Hi
>
Title: onSelectionChanged() for Listmultiplechoice
Has anyone implemented this? Preforable in a class that allows single selection and mutiple selections?
-regards Nino
Title: RadioGroup: test fails
Hi
I know I am doing something wrong im just not sure whatJ
I have a radiogroup, which I populate with radio buttons, in a listview:
myRadioGroup = new wicket.markup.html.form.RadioGroup("radiogroup");
form.add(
?
-regards
Nino
From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael
Sent: Monday, March 06, 2006 12:50
PM
To: wicket-user@lists.sourceforge.net
Subject: [Wicket-user] RadioGroup:
test fails
Hi
I know I am doing something
Title: RadioGroup: test fails
Argh I meant Radio not
RadioChoice.
-Nino
From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael
Sent: Monday, March 06, 2006 1:40
PM
To: wicket-user@lists.sourceforge.net
Subject: RE: [Wicket
Title: [wicket 1.1.1]FormTester clicking a specific button
Hi
How do I click a specific button using the test wicket framework?
-regards Nino
would you have that?
On every click you want to go to the server?
johan
On 3/6/06, Nino Wael <[EMAIL PROTECTED]> wrote:
Has anyone implemented this? Preforable in a class that allows single
selection and mutiple selections?
-regards
Nino
this:
FormTester formTester = wicketTester.newFormTester(false);
formTester.setValue("myButton", "whatever");
formTester.submit() ;
this should click the button with "myButton" wicketId.
On 3/7/06, Nino Wael <[EMAIL PROTECTED]> wrote:
Hi
How do I cl
Title: DropDownChoice howto change default text
Hi
How do I change the default text (“Choose One”, see picture below) of a dropdownchoice, do I need to implement a custom render?
I’ve looked at the methods for dropdownchoice class but no one seems to do just that.
-regards Nino
then a page.properties file that has a form as a child where the
choice is in.
johan
On 3/8/06, Nino Wael <[EMAIL PROTECTED]> wrote:
Hi
How do I change the default text ( "Choose
One ", see picture
below) of a dropdownchoice, do I
need to implement a custom render?
I
Hi
I have a form with multiple submit buttons, how do I click the correct button?
On formtester I can only set the submit method. Which does not allow med to
specify which button to click.
-regards Nino
formTester.submit() ;
Does this not work for you ?
On 3/13/06, Nino Wael <[EMAIL PROTECTED] > wrote:
Hi
I have a form with multiple submit buttons, how do I click the
correct button? On for
Hi
Im trying to do some testing with the wicket test framework and was wondering
on the bedst method to test if at listbox contains any data items, I guess I
could use the wickettester.assertContains() to check for a certain value in
the listbox.
But what if I have two list boxes in a speci
Hi I've
created a control which essentially is a radio button and a listbox, where each
click on the radio button populates the listbox with values.
I've done or rarther are trying to do this by using the wicket radiochoice and
a wicket ListMultipleChoice. And are overiding the onSelectionChang
On 3/15/06, Nino Wael <[EMAIL PROTECTED]> wrote:
Hi I've
created a control which essentially is a radio button and a
listbox, where each click on the radio button populates the listbox
Title: wicket 1.1.1:radiochoice default selected value?
Hi
I need to have a default value selected when rendering a radiochoice, should I overide getdefault choice for to do this?
-regards Nino
Title: wicket 1.1.1: specifiying style on radiochoice or dropdownchoice
Hi
How do I specify a style for radiochoice or dropdownchoice, do I need to create my own class and create a constructor which takes a style as a string and then adds it to the html?
-regards Nino
since it is in total control of
the markup, if you want to style it you can use Radio/RadioGroup components
instead.
-Igor
On 3/17/06, Nino Wael <[EMAIL PROTECTED]> wrote:
Hi
How do I specify a
johan
On 3/17/06, Nino Wael < [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> >
wrote:
On my RadioChoice I make use of the onSelectionChanged, I cant
find a method to do this on Radio/RadioGroup so I guess I need to imple
Sorry for not reading the homepage, I see that you have a migration guide.
However my question about how far you are from going stable still stands.
-regards Nino
-Oprindelig meddelelse-
Fra: [EMAIL PROTECTED] på vegne af Nino Wael
Sendt: fr 17-03-2006 11:22
johan
On 3/17/06, Nino Wael <[EMAIL PROTECTED]> wrote:
Hmm, how far is 1.2 from going stable, is possible to get a
status on that?
Im in the midst of developing could I just sw
Hi im having some trouble making a default selection on my radiogroup.
Should I try to make the selection on the radiogroup or the button itself, I
guess the first?
Currently im trying to use RadioGroup.setModelObject, however this is not
working or I am passing on a wrong object. I'll very
a default
there is an example usage in wicket examples/ component reference.
-Igor
On 3/21/06, Nino Wael <[EMAIL PROTECTED] > wrote:
Hi im having some trouble making a default selection o
Hi
Might be me which has’nt been looking good
enough into documentation.
So I have the following scenario and question:
Two listmultiplechoice box’ses where you can
exchange contents of the list boxes by pressing one of two buttons see nice
ascii grapichs below:
Listbox a
can do this all nicely via some very
basic _javascript_. see Palette component in extensions, it does exactly what you
want and more.
-Igor
On 3/27/06, Nino
Wael <[EMAIL PROTECTED]>
wrote:
Hi
Might be me which has'nt been looking good enough into documentation.
So I h
@lists.sourceforge.net
Subject: Re: [Wicket-user]
Validation
yes, the palette takes
care of everything for you. thats the point of encapsulation :)
check out component reference in wicket examples for 1.2
-Igor
On 3/27/06, Nino
Wael <[EMAIL PROTECTED]>
wrote:
Well, because it was th
?
-regards Nino
From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael
Sent: 27. marts 2006 11:16
To:
wicket-user@lists.sourceforge.net
Subject: RE: [Wicket-user]
Validation
That is great.
However our client has
some specific requirements towards the look of the
download the wicket-examples:
http://sourceforge.net/project/showfiles.php?group_id=119783&package_id=138752
and look in the source:)
-Oprindelig meddelelse-
Fra: [EMAIL PROTECTED] på vegne af Geertjan Wielenga
Sendt: ma 27-03-2006 13:31
Til: wicket
Hi
I have a page where I need to be able to add controls when a certain button is
clicked. See the nice ascii grapichs below:
| ADD |
upon pressing add this new screen
| ADD |
---
| checkbox a |
---
Going through the bug list I saw that this should be closed
http://sourceforge.net/tracker/index.php?func=detail&aid=1450567&group_id=119783&atid=684975
I can confirm that there no longer is classloading problems this is has been
tried on jetty and tomcat. Was an issue on 1.1.1 but no longer on
Hi
I looked at the dialog between Igor and Stefan,
thought what a nice way to select the default value with the property model. However
and then remembered why it did not do it that way, I wanted to replace the
Choose One text with something else, well at least in some cases. Im replaci
cted)
is called and appended to the output.
johan
P.S. Now i think about it getDefaultChoice is a perfect candidate for returning
a CharSequence instead of a string. So that you don't have to call toString()
on it.
On 4/5/06, Nino Wael
<[EMAIL PROTECTED]> wrote:
Hi
I lo
vegne af Nino Wael
Sendt: to 06-04-2006 10:02
Til: wicket-user@lists.sourceforge.net
Cc:
Emne: SV: [Wicket-user] wicket 1.2 beta 2 DropDownChoice default
display value.. "Please Choose one"
Hmm strange, Im pretty much doin
Hi
Im trying to use some of the functionality of
Checkbox but I get an exception :
“wicket.util.string.StringValueConversionException:
Boolean value "[EMAIL PROTECTED]" not
recognized”
I guess this tells me that my model needs either to
be true of false as a string, however I woul
Hi
Im not sure if this is the intended functionality,
but I belive I’ve discovered an oddity or featureJ.
When I use the constructor which also takes a model (ListChoice("dropdown_job",
new Model(),myList, new myRenderer)) my listchoice is no longer displayed as a
dropdown but as a
s, getChoices().size()));
so i guess if maxRows of size() == 1 then it becomes a dropdown?
johan
On 5/9/06, Nino Wael
<[EMAIL PROTECTED]> wrote:
Hi
Im not sure if this is the intended functionality, but I belive I've
discovered an oddity or featureJ
.
When I use the
Hi
I have an object I would like to have stored in
session, so that I may pass it between pages. I’ve been looking at some
sniplets and created this code for setting the object:
HttpServletRequest
request = ((WebRequest)RequestCycle.get().getRequest()).getHttpServletRequest();
new WebSession(
WebApplication.this);
}
Martijn
On 5/16/06, Nino
Wael <[EMAIL PROTECTED]>
wrote:
Hi
I have an object I would like to have stored in session, so that I may
pass it between pages. I've been looking at some sniplets and created this code
for setting
Hi
Was wondering if any body has an example on howto create
a popup button? I’ve looked at the triggerbutton from the datepicker
extension but that seems to be too complex for such a “simple”
thing?
I want it to run the onsubmit method on the
popupbutton and after that it should ma
Til: wicket-user@lists.sourceforge.net
Cc:
Emne: Re: [Wicket-user] popup button
Hi,
You can use a Link with a PopupSpecification. And you can (or should
be able to) actually attach a link to any tag, including a button tag.
ttaches to the input tag. Like I said, it could
attach to anything really, including buttons, table rows, etc.
Hope this helps,
Eelco
On 5/17/06, Nino Wael <[EMAIL PROTECTED]> wrote:
> Ok, I think I need an example. I'll describe how I belive it works below
> please correc
Hi im getting and error when trying to look at this
link:
http://www.wicket-library.com/wicket-examples/compref
regards Nino
] popup button
Don't override the onclick method.
Eelco
On 5/18/06, Nino Wael <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> Im now using the Pagelink which has the nice onClick event, when the new page
> pops up its just a copy of the current page. And not the cla
Doh, im a little slow today.
When overriding I just call the super.onclick :)
This works fine:)
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael
Sent: 18. maj 2006 11:55
To: wicket-user@lists.sourceforge.net
Subject: RE: [Wicket-user] popup
Title: I've done it again:) browser crashes/creating a custom component
Im in the midst of developing a component that consists of sets of a radio buttons and a listchoice.
The functionality is supposed to be like this:
When you click one specific radio button then the sibling(actually chi
Title: I've done it again:) browser crashes/creating a custom component
This is a resend, with files zipped since my original post didn’t make it through.
Im in the midst of developing a component that consists of sets of a radio buttons and a listchoice.
The functionality is supposed to
java.
Regards Nino
From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael
Sent: Friday, May 19, 2006 8:57 AM
To:
wicket-user@lists.sourceforge.net
Subject: [Wicket-user] I've done
it again:) browser crashes/creating a custom component
Im in
Just create the panel as an anonym class in your page or inner class...
Pseudo Snipplet:
Webpage extends page
{
Mypanel panel=new Mypanel();
This.add(panel);
}
Mypanel extends panel{}
As I remember it should work...
From: [EMAIL PROTEC
Just use a mountedurl
mountBookmarkablePage("/desiredurl",
desiredclass.class);
-Nino
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chris Colman
Sent: 28. februar 2007 11:59
To: wicket-user@lists.sourcef
Oeh an forgot to say that parameters you can just append to the url
Short example:
http:\\localhost\mywicketapp\myniceurl\paramA\valueA\paramB\valueB
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael
Sent: 28. februar 2007 12:02
To: wicket
Hi
I have some components that uses the ajaxformupdatingbehavior. Some times(1% of
1300 requests) under "heavy" load(24 concurent users/threads using jmeter) some
of them fails to be able to select something in the dropdown thats using the
updating behavior. This leads me to think that the aj
Hmm this is really wierd, when testing this against one of our dev machine's
these errors does not occur.. It only occurs against our servers.
Fra: [EMAIL PROTECTED] på vegne af Nino Wael
Sendt: to 15-03-2007 13:56
Til: wicket-user@lists.sourceforge.net
Hi
Currently we are doing this within our wicket application:
getWicketServlet().getServletContext().getRealPath("/");
Im wondering if there are a more wicketly kind of approach to this?
regards Nino
<>-
Take Surveys. Ear
Hi
I have a AJAX modal window wich contains a form. In the form there a an
radiochoice that has an ajax formcomponentupdatingbehavior. Now the updating
behavior are trigered but the model of the radiochoice aren't being updated.
Also on the basepage where you can trigger the modal window, I als
m
If you have nested forms it will fail. Nested forms are not supported
in wicket 1.2.
If you need separate form in modal window in 1.2, the safest bet is to
use a page inside modal window.
-Matej
On 3/26/07, Nino Wael <[EMAIL PROTECTED]> wrote:
> Hi
>
> I have a AJAX modal window
rvlet context
directly from the application object.
Eelco
On 3/26/07, Nino Wael <[EMAIL PROTECTED]> wrote:
> Hi
>
> Currently we are doing this within our wicket application:
>
> getWicketServlet().getServletContext().getRealPath("/");
>
> Im wondering if the
Hi
We are doing some extensive Jmeter testing, and have run into a technical
problem regarding radios, which are the following:
If you had 5 radios on a page at a given time, their value would have been
radio1, radio2.. radio5.
If you then pulled out radio number 4 then the list would be this,
ould it be patched back into wicket 1.2.4?
regards Nino
-Oprindelig meddelelse-
Fra: [EMAIL PROTECTED] på vegne af Nino Wael
Sendt: ti 27-03-2007 08:22
Til: wicket-user@lists.sourceforge.net
Emne: Radio.getValue?
Hi
We are doing some extensive Jmeter testing, and have run into a technica
Any localized javascript operators in the autocomplete thingy(eg boolean=falsch
instead of boolean=0 )? As I remember it only were a problem on IE 5.5. But
thats something you could check.
regards.
-Oprindelig meddelelse-
Fra: [EMAIL PROTECTED] på vegne af David Leangen
Sendt: ti 27-0
hmm, the same thing applies to checkbox component.
-Oprindelig meddelelse-
Fra: [EMAIL PROTECTED] på vegne af Nino Wael
Sendt: ti 27-03-2007 12:15
Til: wicket-user@lists.sourceforge.net
Emne: SV: Radio.getValue?
Hmm I can see that radio are pretty simple on this, no constructors with
Radio.getValue?
I'm afraid I don't really understand your problem Nino.
Eelco
On 3/26/07, Nino Wael <[EMAIL PROTECTED]> wrote:
> Hi
>
> We are doing some extensive Jmeter testing, and have run into a technical
> problem regarding radios, which are the following:
&
pinging/bump Eelco to answer:)
Fra: [EMAIL PROTECTED] på vegne af Nino Wael
Sendt: on 28-03-2007 09:54
Til: wicket-user@lists.sourceforge.net
Emne: SV: [Wicket-user] Radio.getValue?
Ok, let me try to explain another way.
If you create a page where you use
. Not matter if its
on a page or panel..
regards Nino
Fra: [EMAIL PROTECTED] på vegne af Nino Wael
Sendt: ma 26-03-2007 15:18
Til: wicket-user@lists.sourceforge.net
Emne: SV: [Wicket-user] AJAX modal window (1.2.5)and form
it's not a nested
heheh obviously i am using onchange and not onchance:)
Fra: [EMAIL PROTECTED] på vegne af Nino Wael
Sendt: to 29-03-2007 13:42
Til: wicket-user@lists.sourceforge.net; wicket-user@lists.sourceforge.net
Emne: Re: [Wicket-user] AJAX modal window (1.2.5)and form
That was whý I suggested that we could have another constructor that took an
Ichoicerender. There are tons of places in other wicket core components that
supply a constructor that takes the ichoicerender.
SO I think it should be ok? I would really like that ichoicerenderer would be
supported
:15
Til: wicket-user@lists.sourceforge.net
Emne: Re: [Wicket-user] Radio.getValue?
On 4/1/07, Nino Wael <[EMAIL PROTECTED]> wrote:
I do know that radio and check are directly attached to their imodel.
But the imodel does not provide an alternate value for them.
I just dont
Hi, based on something in another thread,
(http://www.nabble.com/Flexible-markup-with-same-Java-classes-tf3471204.html#a9689979)
I was curious on how people does performance test with wicket?
On our project we are using JMeter which we use as a http request processor.
Which we record requests
gards 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 generat
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, Ni
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 t
We had to do our "own" version of the palette. Im not sure if its outdated. But
you can find the old source somewhere linked to in this thread:
http://www.nabble.com/Palette-add-selected-option-tf2730861.html#a7672169
We also created a version where youselft can sort the items, let me know if
o not traverse over a list of choices and try to look one up, they
have the choice attached directly to them via imodel.
-igor
On 3/30/07, Nino Wael <[EMAIL PROTECTED]> wrote:
>
> That was whý I suggested that we could have another constructor that took
> an Ichoicerender. There a
Hi
Something's not right with RadioGroup when using
wantOnSelectionChangedNotifications or I am doing something wrong.
When the same Radio are selected for the 2nd time, the radio becomes unselected
and cannot be selected again until another radio has been selected. However the
RadioGroup'
bump anyone for answer?
Fra: [EMAIL PROTECTED] på vegne af Nino Wael
Sendt: to 26-04-2007 09:25
Til: wicket-user@lists.sourceforge.net
Emne: [Wicket-user] RadioGroup Broken(1.2.5+?/when
usingwantOnSelectionChangedNotifications)?
Hi
Something's not right
Igor please answer:)
Fra: [EMAIL PROTECTED] på vegne af Nino Wael
Sendt: to 26-04-2007 16:01
Til: wicket-user@lists.sourceforge.net; wicket-user@lists.sourceforge.net
Emne: Re: [Wicket-user] RadioGroup
Broken(1.2.5+?/whenusingwantOnSelectionChangedNotifications
. Nino, if you think it's a bug, would you
mind opening up a JIRA issue for it? Thanks,
Eelco
On 4/26/07, Nino Wael <[EMAIL PROTECTED]> wrote:
> Hi
>
> Something's not right with RadioGroup when using
> wantOnSelectionChangedNotifications or I am doing something wr
usingwantOnSelectionChangedNotifications)?
Been busy on the list again. Nino, if you think it's a bug, would you
mind opening up a JIRA issue for it? Thanks,
Eelco
On 4/26/07, Nino Wael <[EMAIL PROTECTED]> wrote:
> Hi
>
> Something's not right w
ne it again:) browser crashes/creating a custom component
please provide us with a
quickstart project so we can easily start it and see whats going on.
-Igor
On 5/19/06, Nino
Wael <
[EMAIL PROTECTED]> wrote:
Dos'nt
anybody have a comment?
Hi
Im’ having some trouble setting the selected
radio on my RadioGroup.
My Radios are held within a listview and im wanting
to set the selected radio when constructing my form. However when setting my
model after adding the listview to the radiogroup no radio is selected, so my
que
-Igor
On 6/1/06, Nino Wael <[EMAIL PROTECTED] > wrote:
Hi
Im' having some trouble setting the selected radio on my
RadioGroup.
My Radios are held within a listview and i
Ok here it is, the page
that holds the component that fails to load the model is the third page, and
the component are called radiodropdown. I hope you can abstract from all the
other stuff I had to put in there, we’re doing a lot of stuff with
wicket/hibernate.
So you need to click the
-user] RadioGroup and Listview
isnt it embarrassing when you forget to attach the attachment? :)
-Igor
On 6/2/06, Nino Wael <[EMAIL PROTECTED] > wrote:
Ok here it is, the page that holds the com
sourceforge) does not allow zip
attachements. Could you please file an issue (bug) with that
attachement? Good for tracking anyway.
Eelco
On 6/2/06, Nino Wael <[EMAIL PROTECTED]> wrote:
>
>
>
IL PROTECTED] On Behalf Of Nino Wael
Sent: 3. juni 2006 18:24
To:
wicket-user@lists.sourceforge.net
Subject: SV: [Wicket-user]
RadioGroup and Listview
Ok here it is then:)
http://sourceforge.net/tracker/index.php?func=detail&aid=1500128&group_id=119783&atid=684975
Hi
I have a popup button where I want to check misc stuff on my form model before
I allow the popup to actually popup the new page.
I've tried to override the onClick event on the pageLink control but it still
pops a page no matter what. Im not sure if I am using the correct approach.
Regar
popup when the link is rendered? If the latter is the case - and I
would be surprised if it is not - you can just set/ unset popup
settings, or tweak getPopupJavaScript to what you need.
Eelco
On 6/7/06, Nino Wael <[EMAIL PROTECTED]> wrote:
> Hi
>
> I have a popup button where I
Hi Gangadhar
Im using this to attach a
word document
WebResponse
response = (WebResponse) getResponse();
response.setContentType("application/msword");
-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael
Sent: 8. juni 2006 09:43
To: wicket-user@lists.sourceforge.net
Subject: Re: [Wicket-user] PageLink wanting to check model beforeallowingpopup
Thanks, the latter is precisely what I needed(I set/unset the popup settings
Hi
Im a little curious since I recall doing this earlier.. Now it seems that
PageLink onClick never gets called why is that?
See snip below
Html:
Java snip:
myReport = new PageLink("openword", new IPageLink() {
public Page getPage() {
1 - 100 of 274 matches
Mail list logo