if you would like you may start a wicket-stuff project to build up some of these components. that way the committers and others interested can also contribute.let me know if you would like to do that.-Igor
On 3/29/06, Joshua Lim <[EMAIL PROTECTED]> wrote:
thanks igor, that is very close to what I n
How about extending Include as follows:
public class LightInclude extends Include {
public LightInclude(String id, String model, ServletRequest request,
ServletResponse response) {
this.request = request;
this.response = response;
}
protected String importUrl(String url) {
thanks igor, that is very close to what I need, and the insight too into the backing list model... I think that would be useful, I do want another, which will only take 1 single value. perhaps a limit on the list ?
basically I am trying to build up more widgets to make answering surveys interestin
Hi,
I tried FrameworkSettings.getVersion(), but it seems to read
wicket.properties of my application instead from wicketXX.jar. Does it work
for you?
Thanks, Jan
---
This SF.Net email is sponsored by xPML, a groundbreaking scripting languag
On 3/29/06, Joshua Lim <[EMAIL PROTECTED]> wrote:
and the other a editable div like "tiddywiki" http://tiddlywiki.com but also dragable...
take a look at AjaxEditableLabel, its probably not exactly what you want, but it will give you an idea of how it can be done.
there is a good impl of draggable
Hi Eelcoyea, I think the slider out of bound is defined by the div in the css. I intend to look into thatthis morning.. and also making it more configurable like being able to define how many intervals,the length etc that kind of thing ...
I like your idea of it being able to drop inside a form cou
most times you do want the listitem's markuplike .or -Igor
On 3/29/06, Ramnivas Laddad <[EMAIL PROTECTED]> wrote:
That sort of worked (rendered "wicket:id="list" tags, but not
wicket:id="item" tags). However in case of the DOJO-based tree, since
tags for each node (along with a bunc
That sort of worked (rendered "wicket:id="list" tags, but not
wicket:id="item" tags). However in case of the DOJO-based tree, since
tags for each node (along with a bunch of attribute) need to be
written, I needed the opposite.
HOWEVER, your suggestion gave me an idea for a variation and it wo
For anyone who was following my idea about "mixed types" which Igor posted to the user list recently, I've changed the name of it to "type enhancers" and written a micro-whitepaper on it which you can read
here. If anyone has any comments, I'd be interested in your feedback. Thanks!Best, Jona
Thanks Joshua. There is still a weird thing: it seems that the slider
can be dragged out of bounds.
See http://papernapkin.org/pastebin/app/view/86
How do you plan on using the component? Do you plan on coupling it to
a textfield and use that for form submission? I was planning (didn't
get to the
Change the markup to:and your listview:populateItem(Item item) {
item.add(new Label("item").setRenderBodyOnly(true));}Names may have been changed, due to negligence of my memory.MartijnOn 3/30/06,
Ramnivas Laddad <[EMAIL PROTECTED]> wrote:
Hi,I am continuing my attempt to create a DOJO-based t
Hi,
I am continuing my attempt to create a DOJO-based tree (Thanks Igor for
the urlFor() tip).
Currently, I am facing a problem of extra markup emitted in a listview.
I think there is something wrong with my code, but can't quite figure
out what. I am using 1.2-beta2.
Here is a short progr
A different approach is to use ajax enabled fields so that everytime
you leave an input field your changes are immediately applied to the
models. That way it doesn't matter at all which link you click
anywhere.
Eelco
On 3/29/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
> well, this is pretty tri
yep, thats trunkOn 3/29/06, Arto Arffman <[EMAIL PROTECTED]> wrote:
hmm, i'm using svnroot/wicket/trunk/wicket, if that's what you mean
2006/3/29, Arto Arffman <[EMAIL PROTECTED]>:
OK, I'll check if it's my mistake or is there really a bug.
(latest head, don't know what "off trunk" means)
200
you can cache those calculations in a modelhave a CachingModel that decorates another model and applies caching strategies.streaming html is fast in wicket, not sure if caching the actual html output will help you much.
-IgorOn 3/29/06, Alexander Lohse <[EMAIL PROTECTED]> wrote:
Hi John,thank you f
hmm, i'm using svnroot/wicket/trunk/wicket, if that's what you mean
2006/3/29, Arto Arffman <[EMAIL PROTECTED]>:
OK, I'll check if it's my mistake or is there really a bug.
(latest head, don't know what "off trunk" means)
2006/3/29, Igor Vaynberg <[EMAIL PROTECTED]>:
it should and i though
Hi John,
thank you for sharing your thoughts. I am just in the same process/
needs. I have a PHP-Application that grew into too much spagetthi-
code over the years, and we have a strong need for a compiled, typed
language to preserve stability and be able to continue growing.
This is a medium
this will be very specific to each application, you can do this yourself easily enough. add an ajax link that replaces the content area with a panel, and updates the panel.this is kinda like the TabbedPanel/AjaxTabbedPanel works, take a look at that.
-IgorOn 3/29/06, Bruno Borges <[EMAIL PROTECTED]
yes, the page will cascade ondetach() down its hierarchy.-IgorOn 3/29/06, Arto Arffman <[EMAIL PROTECTED]
> wrote:Yes, that's the way it should be. First it sounded a bit unconsistent but there could be situations where
page.onDetach() needs to be called. eg. if one of the rendered components uses
Yes, that's the way it should be. First it sounded a bit unconsistent but there could be situations where page.onDetach() needs to be called. eg. if one of the rendered components uses page's model. On the other hand, they could use for example form's model through compound model. Is onDetach() cal
Is there a way to get the page the intercept page is supposed to go to inside the intercept page? The PageMap has no method which allows me to get the continuation url, but I need some way of getting the Page after the intercept page because I want something to show up only if the continuation pag
yeah, page.onattach will not be called, only the components that are added to the target.page.ondetach gets called at the end of any request cycle, i dont think its a problem because unless the page has been attached it should be a noop, and its a good safety net.
-IgorOn 3/29/06, Arto Arffman <[EM
i would submit to a bookmarkable page yes.That would be the easiest thing to do.johanOn 3/29/06, Sven Meier <
[EMAIL PROTECTED]> wrote:How would you handle a submit of a form that originates from outside of
Wicket?Let me explain:In many web applications some forms (e.g. 'search a product') arerepli
I think it's mistake. I was relying on Page's onAttach(). I suppose its only those components that get rendered, am I rigth?
Funny though, Page.onDetach() is called, but Page.onAttach() is not.
2006/3/29, Arto Arffman <[EMAIL PROTECTED]>:
hmm, i'm using svnroot/wicket/trunk/wicket, if that's wh
head is for cvs, trunk is for svn :)-IgorOn 3/29/06, Arto Arffman <[EMAIL PROTECTED]> wrote:
OK, I'll check if it's my mistake or is there really a bug.
(latest head, don't know what "off trunk" means)
2006/3/29, Igor Vaynberg <[EMAIL PROTECTED]>:
it should and i thought i recently fixed it,
Is it possible to build a Border (i.e.: NavomaticBorder) that opens the pages in the contentBody div using Ajax?Some Ajax component will process the page, and put the content into the replacing or changing the visibility (cache-mode). Is there any Wicket Component that does this ?
In the Navomatic
How would you handle a submit of a form that originates from outside of
Wicket?
Let me explain:
In many web applications some forms (e.g. 'search a product') are
replicated on other pages of the same application or even on other sites
of business partners or advertisers.
For our actionframewo
OK, I'll check if it's my mistake or is there really a bug.
(latest head, don't know what "off trunk" means)
2006/3/29, Igor Vaynberg <[EMAIL PROTECTED]>:
it should and i thought i recently fixed it, are you working off trunk?
-Igor
On 3/28/06, Arto Arffman < [EMAIL PROTECTED]
> wrote:
Sh
Very nice! Quite a bit of work that must have been :)
I skimmed through it quickly, and in general it seems like a useful
taxonomy. Do you have any specific areas where you would like to see
some user participation?
Eelco
On 29 Mar 2006 14:23:23 +0200, Iwan Vosloo <[EMAIL PROTECTED]> wrote:
>
>
I got it. From the Wicket-Example. :)Thank youOn 3/29/06, Juergen Donnerstag <[EMAIL PROTECTED]
> wrote:not that I can think ofJuergenOn 3/29/06, Vincent Jenks <
[EMAIL PROTECTED]> wrote:> Is there a performance hit for customizing the location of the html files?> I thought I had read that somewher
That's what I did in the first version(s) of Include. There were
issues with it, which I unfortunately forgot. I never use this
component myself, but if you have good ideas in the form of patches,
I'd be happy to look at them.
Eelco
On 3/29/06, Nili Adoram <[EMAIL PROTECTED]> wrote:
> Hi,
> Is th
and please add a junit test (not just describing the problem).
src/test contains plenty of junit test you might copy&paste (search
for WicketTestCase)
Juergen
On 3/29/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
> it might be a bug because we handle tags specially ( we dont require
> them to be
Ok, should be fixed in svn head now. Added junit tests.
Juergen
On 3/29/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote:
> sorry, I was mislead. Your code is right. The issue is the Ajax stuff
> is not yet supported if the Ajax component is part of a bordered page.
> Please use markup inheritanc
it might be a bug because we handle tags specially ( we dont require them to be closed) i believe, please file.-IgorOn 3/29/06, Rüdiger Schulz
<[EMAIL PROTECTED]> wrote:Justin Lee wrote on
29.03.2006 at 18:44:thanks for your quick reply :)Actually, that is what I also thought is logical. Still I
heh, you are not really giving us much to go on. show us what you have so far.-IgorOn 3/29/06, ketan gote <
[EMAIL PROTECTED]> wrote:hi
i want to fetch the data from database which i have done
and want to display it in respective textfield which i am not able to do.
wating for replay
regards
keta
Ok, well in that case the same arguments hold except for the ajax thingy.
Eelco
On 3/29/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
> i think he was talking about Echo not Echo 2 :)
>
> -Igor
>
>
>
> On 3/29/06, Eelco Hillenius <[EMAIL PROTECTED] > wrote:
> >
> > I was browsing some of the frame
i think he was talking about Echo not Echo 2 :)-IgorOn 3/29/06, Eelco Hillenius <[EMAIL PROTECTED]
> wrote:> I was browsing some of the framework comparisons on the web and realized
> that though Wicket is in key ways most similar to Echo. Yet, very little> has been written to contrast these two.
it should and i thought i recently fixed it, are you working off trunk?-IgorOn 3/28/06, Arto Arffman <
[EMAIL PROTECTED]> wrote:Should onAttach() be called when ajax is used? (using latest head)
If so I'll dig deeper...
/arto
hi
i want to fetch the data from database which i have done
and want to display it in respective textfield which i am not able to do.
wating for replay
regards
ketan
And please read the notes of that project. If you are serious about
using it, we might resurrect it and help you maintain it. Otherwise,
it's just there to serve as an example of how javascript validation
might be implemented. And if you have alternatives, we would be
interested to learn about it o
you can inject the proxy into any componentlook at wicket-spring projectyou can create a IFieldValueFactory that injects a proxy for your stateful bean.-Igor
On 3/29/06, Vincent Jenks <[EMAIL PROTECTED]> wrote:
I'm sitting here, pondering, and getting fatter. I'm building a storefront app w/ a sim
> I was browsing some of the framework comparisons on the web and realized
> that though Wicket is in key ways most similar to Echo. Yet, very little
> has been written to contrast these two. The one difference that I can
> ascertain is that Wicket exposes the underlying html whereas Echo complet
not that I can think of
Juergen
On 3/29/06, Vincent Jenks <[EMAIL PROTECTED]> wrote:
> Is there a performance hit for customizing the location of the html files?
> I thought I had read that somewhere in the wiki, once upon a time.
>
>
> On 3/29/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote:
>
well, this is pretty tricky stuffbecause you embed the form inside the tabbed panel it really shouldnt know anything about when the tab switches.one solution i might see is to embed the tabbed panel inside the form instead
that way the links can submit the form and handle switching the tabs when ap
I'm sitting here, pondering, and getting fatter. I'm building a storefront app w/ a simple shopping cart for which I'm thinking of using a Stateful session bean (EJB 3.0).It looks like, no matter how I look at it, I'll have to keep the SFSB stub in-session throughout its use in the application...a
Is there a performance hit for customizing the location of the html files? I thought I had read that somewhere in the wiki, once upon a time.On 3/29/06, Juergen Donnerstag
<[EMAIL PROTECTED]> wrote:
please see wicket-example customresourceloadingJuergenOn 3/29/06, Bruno Borges <[EMAIL PROTECTED]
please see wicket-example customresourceloading
Juergen
On 3/29/06, Bruno Borges <[EMAIL PROTECTED]> wrote:
> I don't like the way wicket put together Java classes with HTML resources
> (in the same package structure).
>
> Even if I move the structure to another path, like WEB-INF/html, I must
>
I don't like the way wicket put together Java classes with HTML resources (in the same package structure).Even if I move the structure to another path, like WEB-INF/html, I must reproduce all the package tree, and then add a resource folder in my init() WebApplication subclass.
I was wondering if i
ok,
NumberValidator.range=blah blah
worked.
On 3/29/06, karthik Guru <[EMAIL PROTECTED]> wrote:
> How s' d i be specifying the key in properties file when using
> NumberValidator?
> For others just specifying the validator class name key works.
>
> thanks,
> karthik
>
--
-- karthik --
Justin Lee wrote on 29.03.2006 at 18:44:
thanks for your quick reply :)
Actually, that is what I also thought is logical. Still I wonder why
this works, with the red asteriks and all:
and this here not, throwing the Exception mentioned:
with the exact same Java code
are these textfields inside a listview?-IgorOn 3/29/06, Roan O'Sullivan <[EMAIL PROTECTED]
> wrote:
Hi.I am dynamically
building a form, and I dynamically add validators for TextField inputs
(RequiredValidator, TypeValidator, etc.) in a DropDownChoice's
IOnChangeListener method. When I step thro
the javadoc on static factory methods describes the keys-IgorOn 3/29/06, karthik Guru <[EMAIL PROTECTED]
> wrote:How s' d i be specifying the key in properties file when using NumberValidator?
For others just specifying the validator class name key works.thanks,karthik--
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160
Right. then you'd add the feedback panel and textfield directly to your
page/panel. Otherwise, you'd have to add the textfield to your feedback
panel since that's where you had it nested.
Rüdiger Schulz wrote:
> Justin Lee wrote on 29.03.2006 a
Thanks EelcoI have been poking around and manage to get the slider out in the examples, however, it now slides out of the bar :P ... I hope to add more options though...I am new to oss and scm in general so not sure how to apply a patch and don't want to break things. so I am attaching them in this
I was browsing some of the framework
comparisons on the web and realized that though Wicket is in key ways most
similar to Echo. Yet, very little
has been written to contrast these two.
The one difference that I can ascertain is that Wicket exposes the
underlying html whereas Echo complet
Justin Lee wrote on 29.03.2006 at 18:12:
>
>
>
>
Sorry, this doesn't work either :(
Wouldn't that be a component tree like that:
fooForm:barFeedback
fooForm:barText
?
Still wondering why my example works with but not with ...
> Rüdiger Schulz wrote:
>> Hello list,
>>
>> I'm just
Hi, I finally fixed it, the problem was that I set a response page after invalidating the session, I commented the line and also redefined the PageExpiredErrorPage and it worked!.Thanks.Jaime.Jaime De La Jara <[EMAIL PROTECTED]> wrote: Date: Tue, 28 Mar 2006 14:01:39 -0800 (PST)From: Jai
sorry, I was mislead. Your code is right. The issue is the Ajax stuff
is not yet supported if the Ajax component is part of a bordered page.
Please use markup inheritance instead.
Juergen
On 3/29/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote:
> Wicket shouldn't get into an infinite loop, that
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160
Rüdiger Schulz wrote:
> Hello list,
>
> I'm just starting to use Wicket 1.1, and stumbled upon an issue with
> the component tree.
>
> Say I have a Form fooForm and a TextField barText, which is wrapped in a
> FormComponentFeedbackBor
Hello list,
I'm just starting to use Wicket 1.1, and stumbled upon an issue with
the component tree.
Say I have a Form fooForm and a TextField barText, which is wrapped in a
FormComponentFeedbackBorder barFeedback. The tree therefore is like
this:
fooForm:barFeedback:barText
I'd like to do HTML
about 1:You can share objects if you want between sessions..Thats also a no brainer. The problem comes when you have to think about synchronization issuesAnd then the big questions arives.. What does cost more performance?
And maybe for a search engine (where the pages are very very simple because
Should onAttach() be called when ajax is used? (using latest head)
If so I'll dig deeper...
/arto
Wicket shouldn't get into an infinite loop, that for sure. But there
is a bug in your code:
myBorder = new PageLayout("pageLayout", "Ajax Test");
myBorder.setTransparentResolver(true);
add(myBorder);
add(ajaxLabel = new Label("ajaxLabel", "AAA" ));
aja
That realy looks like a orion bug
Juergen
On 3/29/06, Theo vN <[EMAIL PROTECTED]> wrote:
> Hi
>
> In the web.xml of the wicket-examples the servlet mapping is shown as..
>
>
> LinkomaticApplication
> /linkomatic/*
>
>
> The above does work in Tomc
So you want to click on one tab , and that should actually result in
the form submit?
wicket extensions TabbedPanel uses Link and not SubmitLink.
So when you click on a tab , it does not submit your form and hence
you lose out on the data.
---
Igor,
I'm just thin
Frank Silbermann schrieb:
But my "src" attribute to be modified _is_ in my HTML, as you can see
(value shown is "REPLACE_THIS.png"). The problem is that the existing
"src" attribute's value was not replaced. What do I need to do
differently?
Use this constructor:
new AttributeModifier("src",
Hi.I am dynamically
building a form, and I dynamically add validators for TextField inputs
(RequiredValidator, TypeValidator, etc.) in a DropDownChoice's
IOnChangeListener method. When I step through the code, that seems to work
correctly: validators are added to the TextField input.
But whe
How s' d i be specifying the key in properties file when using NumberValidator?
For others just specifying the validator class name key works.
thanks,
karthik
---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that
http://wicket-stuff.sourceforge.net/wicket-contrib-fvalidate/On 3/29/06, Theo vN
<[EMAIL PROTECTED]> wrote:HiI'm new to Wicket and so far so good.
I'm used to Tapestry's _javascript_ validation but I seem not to be ableto find any documentation/examples/facts on whether Wicket supportsclient side
Hi,
Is there an option to use utilize wicket Include without opening a new
connection?
I would like to include the contents of a URL like
RequestDispatcher.include() does, directly into a wicket component.
10x
Nili
---
This SF.Net email is s
Hi
I'm new to Wicket and so far so good.
I'm used to Tapestry's javascript validation but I seem not to be able
to find any documentation/examples/facts on whether Wicket supports
client side javascript validation or not. I am NOT talking about
anything AJAX.
Can somebody please enlighten me.
-
Hi
In the web.xml of the wicket-examples the servlet mapping is shown as..
LinkomaticApplication
/linkomatic/*
The above does work in Tomcat but not in Orion (orionserver.com).
What works in Orion is..
LinkomaticApplicat
There is already a bug for this in sourceforge.
Juergen
On 3/29/06, Andre Matheus <[EMAIL PROTECTED]> wrote:
> I am having trouble using Ajax links in pages with a border with
> setTransparentResolver(true);
>
> The message in the Wicket Ajax Debugger is the following:
>
> INFO:
> INFO: initia
On 3/29/06, John Lee <[EMAIL PROTECTED]> wrote:
> I wish I had the time :-) I'm in the process of moving my client's code
> from php->Java. Need to move to a typed language. Things were getting
> way too messy with PHP. I discovered wicket and think it's the right way
> to go. But I wanted to shar
Hi Eelco.
About a year ago we had an exchange about the survey I was busy with of
80 web framework (and related) projects. (It forms part of my Masters
dissertation.)
I've put up a wiki with the results at: http://www.reahl.org/wfmwiki.
It would be great if you could join in!
I include some
ok I will take a look On 3/29/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote:
Ok, just checked in some improvements. Slider still doesn't work forme however. Joshua, if you are interested, please take a look at whatis in SVN now, and see if you can find what the problem is.Thanks and have fun,
Eelco
Ok, just checked in some improvements. Slider still doesn't work for
me however. Joshua, if you are interested, please take a look at what
is in SVN now, and see if you can find what the problem is.
Thanks and have fun,
Eelco
On 3/28/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote:
> I didn't cho
I am having trouble using Ajax links in pages with a border with
setTransparentResolver(true);
The message in the Wicket Ajax Debugger is the following:
INFO:
INFO: initiating ajax GET request with...
INFO: url:
/QuickStart/app?wicket:interface=:2:ajaxLink:-1:IUnversionedBehaviorListener&wi
I wish I had the time :-) I'm in the process of moving my client's code
from php->Java. Need to move to a typed language. Things were getting
way too messy with PHP. I discovered wicket and think it's the right way
to go. But I wanted to share my perspective from what I learned running
a relat
I use Wicket 1.2beta2 and I have the followin question:
I have a TabbedPanel with several tabs (according to the example). Each Panel
contains an InputForm. Weh I change from one pane to another by klicking at the
tab label I receive no onSubmit event and the input is lost. is there a way to
mak
Is that a proposal? :)
My first thought on this is to use AOP and meta data (either
annotations or Wicket meta data). If people are interested, they can
startup a project in wicket-stuff for this. We (the core developers)
will try to help when needed/ possible.
Ramnivas, are you reading with us?
Hi
I can tell you for public facing websites (vs enterprise), caching is a
key feature that system architects will insist upon. In order to support
extremely high concurrency & throughput, one simply must be able to
cache portions of HTML fragments.
On my previous php based projects, I use c
I didn't choose for that set implemention because I thought it would
be useful to have an insertAt option.
Eelco
On 3/28/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote:
> Use a LinkedHashSet to filter out double entries and keep order.
>
> Martijn
>
>
> On 3/29/06, Eelco Hillenius < [EMAIL PROTE
83 matches
Mail list logo