I recently upgraded to wicket 1.2.6 and although this time my application
path is /*
and i realized for each page refresh or event, the same sets of images seems
to be loading all over again making loading appear slow
what could be the cause of this?
thanks
---
Tomcat, ie7, safari, and firefox. and wicket 1.3 beta 2.
On 7/20/07, Sean Sullivan <[EMAIL PROTECTED]> wrote:
>
> Which web browser? Which version of wicket? Which app server?
>
>
>
> On 7/20/07, Francisco Diaz Trepat - gmail <[EMAIL PROTECTED]>
> wrote:
> >
> > Hi has anyone has had this probl
Which web browser? Which version of wicket? Which app server?
On 7/20/07, Francisco Diaz Trepat - gmail <[EMAIL PROTECTED]>
wrote:
>
> Hi has anyone has had this problem before?
>
> I have a page and everything works fine. but when I click on a link at the
> home page only works (goes to the p
Tim,
And how are you overriding the "goToPageB" method in the test? Using
WicketTester you never actually create an instance of PageB, that is you as
the developer.
-Craig
Timo Rantalaiho wrote:
>
> On Tue, 17 Jul 2007, Ingram Chen wrote:
>
>> We also suffer the same issues here. But due to
It's hackish but this modified selectMultiple works for me:
public void selectMultiple(String formComponentId, int[] indexes)
{
checkClosed();
// This is a hack to get Palette selection working with
FormTester.
// Note we can't ref
I've come up with a possible solution to this issue or at least a start that
can be discussed a bit more.
My solution is to implement my own implementation of wicket's IPageFactory.
This implementation is really just a wrapper around the default one since
the default one is final.
I then create
Hi has anyone has had this problem before?
I have a page and everything works fine. but when I click on a link at the
home page only works (goes to the page) if I am at localhost:// etc. even on
my own computer.
f(t)
-
This
The wicket ajax link examples are great. The functionality I need is very
similar to the third link example here:
http://www.wicket-library.com/wicket-examples/ajax?wicket:bookmarkablePage=:wicket.examples.ajax.builtin.LinksPage
( ajax link with a busy indicator. the server will deliberately pa
svn update and your quickstart will work
-igor
On 7/20/07, ChuckDeal <[EMAIL PROTECTED]> wrote:
>
>
> I am attempting to work around the problem I described here:
> http://www.nabble.com/Repaint-single-row-of-a-DataTable-tf4111859.html
>
> As a result, now instead of adding the row to the target
> in the end it will be the panel-solution I think.
> but is there a way to diable the check?
Not really for those components. Though if you take a look at their
sources, they are not real difficult components. TextArea for
instance:
public class TextArea extends AbstractTextComponent
{
p
I am attempting to work around the problem I described here:
http://www.nabble.com/Repaint-single-row-of-a-DataTable-tf4111859.html
As a result, now instead of adding the row to the target, I add each
formComponent WITHIN the row. The cells of my DataTable are Fragments that
represent a FormCom
> SOmeone is losing quite a bit of sleep!
You bet. Though more over that friggin' book than over the mailing list. :)
Eelco
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2
brilliant, thanks
On 7/20/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
> ((webrequest)getrequest()).gethttpservletrequest()
>
> -igor
>
>
> On 7/20/07, Robert Young <[EMAIL PROTECTED]> wrote:
> >
> > Hi,
> >
> > I have a servlet filter which analyses the servlet request and then
> > sets a variabl
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
Wicket-user mailing l
((webrequest)getrequest()).gethttpservletrequest()
-igor
On 7/20/07, Robert Young <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I have a servlet filter which analyses the servlet request and then
> sets a variable to it, I need access to this inside a wicket web page.
> How can I get hold of the HttpSe
Does anyone have a version of FormTester that works with the Palette
extension? I'd like to get the selectMultiple() method working with Palette
so we can adequately test our pages which have this component.
mike
--
View this message in context:
http://www.nabble.com/Palette-and-FormTester-tf4
This looks to be exactly what I need. I've added the following code to my
home page class:
public void renderHead(IHeaderResponse response) {
response.renderOnLoadJavascript("mainUrl = '" +
RequestCycle.get().urlFor(new MainPageClass()) + "'; openJSWindow()");
}
Unfortunately, I'm now g
It is a problem I think. I will open up a JIRA on it. I completely understand
the "lost email". I am always amazed at the quantity and quality of
responses on the mailing list. SOmeone is losing quite a bit of sleep!
Eelco Hillenius wrote:
>
>> I have successfully deployed and verified tha
Our team is developing a new application Using the following
technologies/frameworks:
Wicket
Spring
Hibernate
Compass/Lucene
Unfortunately we have a small gap in knowledge when it comes to Wicket.
We're learning quickly but we need to hire someone who can step in and be
immediately productive in
Thanks Igor,
I copied SelectOptions and created a CustomSelectOptions where
onBeforeRender contains
.
SelectOption option = new SimpleSelectOption("option",
model, text);
option.add(new AttributeAppender("class", new
Model(renderer.getGroupValue(value)), " "));
thank you eelco,
in the end it will be the panel-solution I think.
but is there a way to diable the check?
renders the added hidden field then a complete html-tag when it replaces
textarea?
--
View this message in context:
http://www.nabble.com/Replace-a-component-with-another-component-by-addi
Hello, I am the newbie of wicket,
i have sample core e-mail client available. Any body have e-mail client
using wicket.
Or give me your suggestion.
It's more helpful to me.
Thanking You.
Regards,
Durai
--
View this message in context:
http://www.nabble.com/regarding-e-mail-client-using-wicket
Problem is that we evict it also on refresh. But then you still can go
to the page B. Anyway, there are more problems then this with
HttpSessionStore. I think that upgrade to 1.3 is really recommended,
as the default SecondLevelCacheSessionStore doesn't suffer from this
problem any more.
-Matej
O
This is addressed to people who have asked for or are interested in a heavily
discounted promotional rate for our new Wicket 1.3 course this weekend.
In short, we've put much care and hard work into preparation and are just
about ready to go now, JIT! We have places still available so we have
deci
Hi,
I have a servlet filter which analyses the servlet request and then
sets a variable to it, I need access to this inside a wicket web page.
How can I get hold of the HttpServletRequest object (or attributes set
in it) from a wicket page?
Thanks
Rob
on selectoption, not directly on select
-igor
On 7/20/07, Huy Do <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> Is it possible to use an AttributeModifier on the DropDownChoice or
> Select option element ? i.e
> Thanks,
>
> Huy
>
> ---
On 7/19/07, Laurent Brucher <[EMAIL PROTECTED]> wrote:
>
> Ok, my bad...
> Cutting out the details, the page that included a ref to the modal window
> had a piece of javascript, which generated an tag with a src
> attribute
> starting with a '#' (this is some code ported from a JSF version of the
igor.vaynberg wrote:
>
> The problem here is specifying the charset, properties factory is global
> so
> you might encode your files one way but a jar you use with components
> might
> have them encoded in another charset - so we cannot really have a global
> charset specified. i think the prope
Hi,
Is it possible to use an AttributeModifier on the DropDownChoice or
Select option element ? i.e
Thanks,
Huy
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://cl
29 matches
Mail list logo