Re: [Wicket-user] page variations (in 1.2)

2007-07-12 Thread Ittay Dror
te_pattern On 7/12/07, Ittay Dror <[EMAIL PROTECTED]> wrote: Hi, Say I have some entity E, and it can have states A,B,C. now, for each state, I render the entity a bit differently (showing more or less information, changing colors). The page is comprised of many, sometimes n

[Wicket-user] page variations (in 1.2)

2007-07-12 Thread Ittay Dror
errors (no matching markup for component). I would like to hear what others have to say about this issue Thank you, Ittay -- Ittay Dror Chief Architect, R&D, Qlusters Inc. Web: qlusters.com Email: [EMAIL PROTECTED] Phone: +972-3-6081994 openQRM - Data Center Provisioning -- I o

[Wicket-user] Change Request (Re: dynamically (client) created form components)

2007-03-06 Thread Ittay Dror
below is a suggestion by me on how to handle repeating components created by javascript, especially for the case where several fields are involved. would love to get a comment on it thanks, ittay Ittay Dror wrote: > > > i think this can be solved inside wicket qui

Re: [Wicket-user] dynamically (client) created form components

2007-03-01 Thread Ittay Dror
Ittay Dror wrote: > > > b. have all repeating elements have the same name. the problem is that > components won't be updated correctly if some fields do not appear, or > i'll need to modify getInputAsArray for each (so as to look in the query > string, not the

Re: [Wicket-user] dynamically (client) created form components

2007-03-01 Thread Ittay Dror
Johan Compagner wrote: > >> > I have one of those pages with '+' and '-' buttons that allow to add >> more >> > fields. How do I manage these in wicket without ajax? > > > just links? Or if something should be submitted SubmitLinks? > And in that link.onClick you do the + or the - behavior >

Re: [Wicket-user] dynamically (client) created form components

2007-03-01 Thread Ittay Dror
Ittay Dror wrote: > > Hi, > > I have one of those pages with '+' and '-' buttons that allow to add more > fields. How do I manage these in wicket without ajax? > > Thanks, > Ittay > another point is this: assume the fields being added are a

[Wicket-user] dynamically (client) created form components

2007-03-01 Thread Ittay Dror
Hi, I have one of those pages with '+' and '-' buttons that allow to add more fields. How do I manage these in wicket without ajax? Thanks, Ittay -- View this message in context: http://www.nabble.com/dynamically-%28client%29-created-form-components-tf3325801.html#a9246163 Sent from the Wicket

Re: [Wicket-user] rendered pages cache

2007-02-18 Thread Ittay Dror
eally want is a shared resource and not a page :) > > -igor > > > On 2/18/07, Ittay Dror <[EMAIL PROTECTED]> wrote: >> >> >> the page has an associated markup. it has place holders for the content, >> the >> table of contents and a label (name o

Re: [Wicket-user] rendered pages cache

2007-02-18 Thread Ittay Dror
ok. thanks. but how do i create the html output? something like 'String output = " > dont use a page > > create a shared resource that streams the contents see WebResource and > DynamicWebResource > > -igor > > > On 2/18/07, Ittay Dror <[EMAIL PR

Re: [Wicket-user] rendered pages cache

2007-02-18 Thread Ittay Dror
again, i don't think i follow. my page's markup looks something like:

Re: [Wicket-user] rendered pages cache

2007-02-18 Thread Ittay Dror
bject getobject() { > Map map=getapplication().getcache(); > Key key=..construct cache key used to identify the result > String text=map.get(key); > if (text==null) { text=constructcontent(); map.put(key, text); } > return text; > } > > -igor > > On 2/18/0

Re: [Wicket-user] rendered pages cache

2007-02-18 Thread Ittay Dror
ext > > will that work? > > -igor > > > On 2/18/07, Ittay Dror <[EMAIL PROTECTED]> wrote: >> >> >> i read this post already ;) >> >> i don't want to add another framework on top of wicket (reverse-caching >> HTTP >> accelerat

Re: [Wicket-user] rendered pages cache

2007-02-18 Thread Ittay Dror
how about using oscache? afaik, wicket plans to work based on a filter, not a servlet (why?), if so, will using a filter for caching conflict (the order matters here)? Ittay Dror wrote: > > i read this post already ;) > > i don't want to add another framework on top of wicket

Re: [Wicket-user] rendered pages cache

2007-02-18 Thread Ittay Dror
://jroller.com/page/JonathanLocke?entry=static_web_sites_in_wicket > > read post and comments. > > > Ittay Dror wrote: >> >> Hi, >> >> How can I cache rendered pages (the pages I want to cache are composed >> dynamically, but from a static

[Wicket-user] rendered pages cache

2007-02-18 Thread Ittay Dror
Hi, How can I cache rendered pages (the pages I want to cache are composed dynamically, but from a static content. So after composition they rarely (even never) change)? Thanks, Ittay -- View this message in context: http://www.nabble.com/rendered-pages-cache-tf3247749.html#a9028362 Sent from

Re: [Wicket-user] ExternalLink weirdness

2006-08-10 Thread Ittay Dror
rate the href attribute > tag.put("href", Strings.replaceAll(url, "&", "&")); > > and > > // or generate an onclick JS handler directly > tag.put("onclick", "location.href='" + url + "';"); > >

[Wicket-user] ExternalLink weirdness

2006-08-09 Thread Ittay Dror
#x27;&' with '&'? can't i have an href like 'http://mysite.com/page?arg1=val1&arg2=val2'? (we're trying to use such an href, and it doesn't work) thanks, ittay -- === Ittay Dror, Chief architect, openQ

Re: [Wicket-user] Behavior cannot change 'enabled' property inonComponentTag

2006-08-02 Thread Ittay Dror
-- >> 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

Re: [Wicket-user] automatic testing

2006-08-02 Thread Ittay Dror
2/06, Frank Bille <[EMAIL PROTECTED]> wrote: >> WicketTester >> (http://woogle.billen.dk/search/q/wickettester) is good for >> functional tests. >> >> Frank >> >> >> >> On 8/2/06, Ittay Dror <[EMAIL PROTECTED]> wrote: >>> Hi, >

[Wicket-user] automatic testing

2006-08-02 Thread Ittay Dror
Hi, What frameworks are suitable for automatic testing of wicket applications? I'm interested in functional, regression and performance tests. Is it tricky because of wicket's on-the-fly id generation? Thanks Ittay -- ======= Ittay Dror, Chief architec

Re: [Wicket-user] working with plugins

2006-07-17 Thread Ittay Dror
c). i think that my proposed solution is straight forward. Igor Vaynberg wrote: > we do have IClassResolver woudnt that help? it helped with osgi > > -Igor > > > On 7/17/06, *Ittay Dror* <[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > do

Re: [Wicket-user] working with plugins

2006-07-17 Thread Ittay Dror
wrote: > I'm afraid I don't get the request. Could you please create a feature > request with a patch, clearly explaining what is wrong today and what > your patch fixes? > > Thanks, > > Eelco > > > On 7/17/06, Ittay Dror <[EMAIL PROTECTED]> wrote: &g

Re: [Wicket-user] bookmarkable ajax link

2006-07-17 Thread Ittay Dror
tegrated technology to make your job easier >> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >> ___ >> Wicket-user mail

[Wicket-user] working with plugins

2006-07-17 Thread Ittay Dror
t track why exactly this happens. regards, ittay -- === Ittay Dror, Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081841 http://www.openQRM.org - Keeps your Data-Center Up and Running

[Wicket-user] Objects.cloneObject

2006-07-11 Thread Ittay Dror
If i try to clone an object that is not in the ClassLoader of the wicket jar, this will fail on ClassNotFound I don't know enough about serialization, but is there a way to use object.getClassLoader to do the deserialization? Thanks, ittay -- === Ittay

Re: [Wicket-user] too much synchronization in wicket?

2006-07-06 Thread Ittay Dror
are situations like session.attach/detach or if you have your own request >> cycle >> that access the session. Then a session can be accessed by multiply threads. >> >> johan >> >> >> >> >> On 7/6/06, Ittay Dror <[EMAIL PROTECTED]> wrote: >>&

Re: [Wicket-user] too much synchronization in wicket?

2006-07-06 Thread Ittay Dror
around the active page. > But then if you hold a page in another page. And set that as a respond > then we can have again > threaded access to that page that is get from a 'pool' > > johan > > > On 7/5/06, *Ittay Dror* <[EMAIL PROTECTED] > <

Re: [Wicket-user] too much synchronization in wicket?

2006-07-05 Thread Ittay Dror
n if you hold a page in another page. And set that as a respond > then we can have again > threaded access to that page that is get from a 'pool' why not require that pages be thread safe? maybe provide this locking optionally, for those that don't want to mess with synchronizatio

Re: [Wicket-user] too much synchronization in wicket?

2006-07-05 Thread Ittay Dror
thanks for the quick response. is there any way around it? what happens if i don't lock? Matej Knopp wrote: > Ittay Dror wrote: >> this is from RequestCycle: >> private final void processEventsAndRespond() >> { >> // Use any synchroniza

[Wicket-user] too much synchronization in wicket?

2006-07-05 Thread Ittay Dror
try to load an unrelated page in the other, it will be stuck, right? ittay -- === Ittay Dror, Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081841 http://www.openQRM.org - Keeps your Data-Center Up and Run

Re: [Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread Ittay Dror
or page? and also, i want just these pages to not redirect, because they are embedded. > > Eelco > > > > On 6/28/06, Ittay Dror <[EMAIL PROTECTED]> wrote: >> ok, created http://www.wicket-wiki.org.uk/wiki/index.php/Jsp_Integration >> >> Eelco Hillenius

Re: [Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread Ittay Dror
ok, created http://www.wicket-wiki.org.uk/wiki/index.php/Jsp_Integration Eelco Hillenius wrote: > I think it might help a lot of users to write a WIKI page on this. > Ittay and John, it would be welcome to share your experiences :) > > Eelco > > > On 6/28/06, Ittay D

Re: [Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread Ittay Dror
ling list > Wicket-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/wicket-user -- === Ittay Dror, Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081841 http://www.openQRM.org - Ke

Re: [Wicket-user] help writing an encoding strategy

2006-06-25 Thread Ittay Dror
hat is transient, i can't bookmark that url. > > johan > > > On 6/25/06, *Ittay Dror* < [EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > also, i found that for redirects, only the query part of the url is > used to save the rendered page. so

Re: [Wicket-user] help writing an encoding strategy

2006-06-25 Thread Ittay Dror
also, i found that for redirects, only the query part of the url is used to save the rendered page. so i must create a url where all the details are in the query part, if i want to use REDIRECT_TO_BUFFER. is that true? Ittay Dror wrote: > Hello, > > I'm trying to write a coding

[Wicket-user] help writing an encoding strategy

2006-06-25 Thread Ittay Dror
Ittay -- === Ittay Dror, Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081841 http://www.openQRM.org - Keeps your Data-Center Up and Running Using Tomcat but need to do more? Need to support web services, security?

Re: [Wicket-user] page reloades infinitely

2006-06-21 Thread Ittay Dror
one other question. the original page map name is still 'null'. is this ok? Ittay Dror wrote: > ok, i did the same magic in my coding strategy and it works. in new tabs > the url now looks like > http://localhost/page/SomePage?wicket:bookmarkablePage=wicket-0:com.package.SomeP

Re: [Wicket-user] page reloades infinitely

2006-06-21 Thread Ittay Dror
? thanx, ittay Ittay Dror wrote: > well, this is the code in WebRequestCodingStrategy: > public final CharSequence encode(final RequestCycle requestCycle, > final IRequestTarget requestTarget) > { > // first check whether the tar

Re: [Wicket-user] page reloades infinitely

2006-06-21 Thread Ittay Dror
uestTarget( > getSession().createAutoPageMapName(), > current.getPageClass(), current.getPageParameters()); > url = cycle.urlFor(redirect); > ) > > I wonder why the generated url doesn't contain the pageMap name. > > -Matej > > Ittay Dror wrote: >> fu

Re: [Wicket-user] page reloades infinitely

2006-06-21 Thread Ittay Dror
estTarget redirect = new > BookmarkablePageRequestTarget( > getSession().createAutoPageMapName(), > current.getPageClass(), current.getPageParameters()); > url = cycle.urlFor(redirect); > ) > > I wonder why the generated url doesn't contain the pageMap name. ok, i will

Re: [Wicket-user] page reloades infinitely

2006-06-21 Thread Ittay Dror
ssion, which means the same cookie, which causes the infinite reloading. > > -Matej > > Ittay Dror wrote: >> Hi, >> >> I'm using firefox. when i duplicate a tab, the tab reloads in an infinite >> loop. >> >> this is the reason: >> &l

Re: [Wicket-user] page reloades infinitely

2006-06-21 Thread Ittay Dror
n i open a new window instead of new tab. it seems to be related to differences in cookie (session) handling between firefox and IE. ittay Ittay Dror wrote: > Hi, > > I'm using firefox. when i duplicate a tab, the tab reloads in an infinite > loop. > > this i

[Wicket-user] page reloades infinitely

2006-06-21 Thread Ittay Dror
r tab. */ i've tried to debug this, but it doesn't look like a new PageMap is created (i don't use it, so the PageMap instance is the default one). so it seems i *don't* get a history per tab. can/should i remove the AutomaticMultiWindowSupport setting? thanx,

[Wicket-user] errors on servlet init

2006-06-20 Thread Ittay Dror
(LeaderFollowerWorkerThread.java:80) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684) at java.lang.Thread.run(Thread.java:595) -- === Ittay Dror, Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTE

Re: [Wicket-user] link cannot be resolved

2006-06-20 Thread Ittay Dror
ince it is not > defined as ) > so I get the markup exception: 'Unable to find component with id > "globalCss"' > > Please advise, > > Thanks, > Nili > > > > > ___ > Wicket-user mailing list

Re: [Wicket-user] in head contribution

2006-06-19 Thread Ittay Dror
aybe juergen can come up with a better idea. > > -Igor > > > On 6/19/06, * Ittay Dror* <[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > if i understand correctly, this is how it goes: > > i have a directory named 'web' wi

Re: [Wicket-user] in head contribution

2006-06-19 Thread Ittay Dror
turns all > relative paths into absolute paths so that a page can be mounted on any > mount /app/a or /app/a/b/c and all the hardcoded links to resources > (js/css/img) still work. > > just giving some background > > -Igor > > > On 6/19/06, *Ittay Dror* <

Re: [Wicket-user] in head contribution

2006-06-19 Thread Ittay Dror
our base page? Would you please a junit test case. > > Juergen > > On 6/15/06, Ittay Dror <[EMAIL PROTECTED]> wrote: >> (i've sent this an hour ago, but can's see it on the list. so i'm resending, >> sorry if it appears twice) >> >> &

Re: [Wicket-user] in head contribution

2006-06-15 Thread Ittay Dror
class name minus a package prefix. i also use a resource locator that translates the location of the html to another folder. maybe the component resolver can't find the relative reference because of this? can i turn this handling of off? thanks, ittay Ittay Dror wrote: > my base

Re: [Wicket-user] in head contribution

2006-06-15 Thread Ittay Dror
And this is your base page? Would you please a junit test case. > > Juergen > > On 6/15/06, Ittay Dror <[EMAIL PROTECTED]> wrote: >> (i've sent this an hour ago, but can's see it on the list. so i'm resending, >> sorry if it appears twice) >> >

[Wicket-user] in head contribution

2006-06-15 Thread Ittay Dror
i'm using markup inheritance with head contribution: the output is: notice that the href now is absolute :-( thanks, ittay -- === Ittay Dror, Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081

[Wicket-user] in head contribution

2006-06-15 Thread Ittay Dror
(i've sent this an hour ago, but can's see it on the list. so i'm resending, sorry if it appears twice) i'm using markup inheritance with head contribution: the output is: notice that the href now is absolute :-( thanks, ittay -- ==

Re: [Wicket-user] bookmarkable ajax components?

2006-06-11 Thread Ittay Dror
ainer page that does nothing > more then read off the url what kind of component you want and > instantiate it. cool! but aren't components instanciated in the constructor? i'll need to remove older ones, right? what about the constructor change in wicket 2.0? > > -Igor >

Re: [Wicket-user] bookmarkable ajax components?

2006-06-11 Thread Ittay Dror
yes, i can do that, but i was wondering if there is a way without needing to write a page (i'm planning on having many such components) thanx, ittay Igor Vaynberg wrote: > why not just create a page that only shows the table? > > -Igor > > > On 6/11/06, *Ittay

[Wicket-user] bookmarkable ajax components?

2006-06-11 Thread Ittay Dror
owing some data in another page, which is not constructed with wicket.For example, put the url in an iframe. Thanks, Ittay -- ======= Ittay Dror, Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081841 http://www.openQ

Re: [Wicket-user] Upload of 1.2 to maven repo complete

2006-05-30 Thread Ittay Dror
nload Wicket 1.2 now! Write Ajax applications without touching JavaScript! -- http://wicketframework.org -- === Ittay Dror, Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081841 http://www.openQRM.org - Keeps

Re: [Wicket-user] Re: How to write model for immutable compound value object?

2006-05-24 Thread Ittay Dror
ser@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user -- === Ittay Dror, Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081841 http://www.openQRM.org - Ke

Re: [Wicket-user] Re: How to write model for immutable compound value object?

2006-05-18 Thread Ittay Dror
ators run over that converted value and if that work that value is stored in the real model. johan On 5/18/06, *Ittay Dror* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: i guess i should have kept my mouth shut ;-) (or my fingers away from the keyboard) ok, i&

Re: [Wicket-user] Re: How to write model for immutable compound value object?

2006-05-17 Thread Ittay Dror
y one with the understanding of what is required. so who better to write the initial code? -Igor -- ======= Ittay Dror, Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081841 http://www.openQRM.org - Keep

Re: [Wicket-user] Re: How to write model for immutable compound value object?

2006-05-17 Thread Ittay Dror
Group Those are both formcomponents but they itself don't have input.. because they aren't html components by itself. and with getInputArray() and/or convertValue you have pretty much all the needed hooks you want. johan On 5/17/06, *Ittay Dror* < [EMAIL PROTECTED] <mailto:[EMA

Re: [Wicket-user] Re: How to write model for immutable compound value object?

2006-05-17 Thread Ittay Dror
kag.net/sel?cmd=k&kid0709&bid&3057&dat1642 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user -- === Ittay Dror, Chief arch

Re: [Wicket-user] Re: How to write model for immutable compound value object?

2006-05-17 Thread Ittay Dror
-Igor -- === Ittay Dror, Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081841 http://www.openQRM.org - Keeps your Data-Center Up and Running --- Using Tomcat but need t

Re: [Wicket-user] Re: How to write model for immutable compound value object?

2006-05-17 Thread Ittay Dror
sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user -- === Ittay Dror, Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081841 http://

Re: [Wicket-user] Re: How to write model for immutable compound value object?

2006-05-17 Thread Ittay Dror
reflects the underlying model 1:1. Igor Vaynberg wrote: on the same page two components can share an IModel instance, so you can fold the manager abstraction directly into the IModel implementation. you have the context already - setObject(Component context, Object o) -Igor On 5/17/06, *Ittay Dror

Re: [Wicket-user] Re: How to write model for immutable compound value object?

2006-05-17 Thread Ittay Dror
Eelco Hillenius wrote: On 5/17/06, Ittay Dror <[EMAIL PROTECTED]> wrote: what if the framework will allow a ComponentManager to be associate with a component? What would it do though? The naming implies it might do anything, while this topic is about models or even more specifically

Re: [Wicket-user] Re: How to write model for immutable compound value object?

2006-05-17 Thread Ittay Dror
s even further, but instead come up with transactional model updating. But that doesn't seem like something trivial. Eelco On 5/17/06, Pekka Enberg <[EMAIL PROTECTED]> wrote: At some point in time, Ittay Dror wrote: > i have a similar use case. below is the code for a compone

Re: [Wicket-user] Re: How to write model for immutable compound value object?

2006-05-16 Thread Ittay Dror
oad IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/l

Re: [Wicket-user] stale session on form submit

2006-05-16 Thread Ittay Dror
time they hit an application. -Igor On 5/15/06, *Ittay Dror* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: if i have a page loaded in the browser and i relaunch the web server, and then submit the page, i get an exception: java.lang.IllegalArgumentException: Pa

Re: [Wicket-user] stale session on form submit

2006-05-16 Thread Ittay Dror
page. That handles the form submit. johan On 5/16/06, *Ittay Dror* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: Johan Compagner wrote: > did you aks that same question 2 days ago and i also replied on it: sorry, there was probably something wrong with the l

[Wicket-user] stale session on form submit

2006-05-16 Thread Ittay Dror
nks, ittay -- ======= Ittay Dror Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081841 http://www.openQRM.org - Keeps your Data-Center Up and Running --- Using Tomcat but need to do

Re: [Wicket-user] stale session on form submit

2006-05-16 Thread Ittay Dror
great. thanx. Johan Compagner wrote: if it has one of the following constructors: default: () pageparameters: (PageParameters params) and you need ofcourse the second because else you can't get the form values. johan On 5/16/06, *Ittay Dror* <[EMAIL PROTECTED] <mailto:[EMAI

Re: [Wicket-user] stale session on form submit

2006-05-16 Thread Ittay Dror
g of a listener when it renders the action part. should i just override that? " johan On 5/16/06, *Ittay Dror* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: if i have a page loaded in the browser and i relaunch the web server, and then sub

[Wicket-user] stale session on form submit

2006-05-15 Thread Ittay Dror
nks, ittay -- ======= Ittay Dror Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081841 http://www.openQRM.org - Keeps your Data-Center Up and Running --- Using Tomcat but need to do more? Need

[Wicket-user] stale session on form submit

2006-05-14 Thread Ittay Dror
nks, ittay -- ======= Ittay Dror Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081841 http://www.openQRM.org - Keeps your Data-Center Up and Running --- Using Tomc

[Wicket-user] wicket legacy integration (high level suggestion)

2006-05-10 Thread Ittay Dror
and posted most of it), but there is still a strong tie with Page classes (that is, the embedded snippet needs to be a Page implementation). ittay -- === Ittay Dror Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +

Re: [Wicket-user] conversion

2006-05-10 Thread Ittay Dror
s strongly objected against Wicket always trying to use converters. In older Wicket versions, it was integrated in it's adoption of OGNL. But users wanted less magic. Eelco On 5/10/06, Ittay Dror <[EMAIL PROTECTED]> wrote: i created a TextField, without setting its type, but with overrid

Re: [Wicket-user] conversion

2006-05-10 Thread Ittay Dror
ork on the right object. On 5/10/06, *Ittay Dror* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: i created a TextField, without setting its type, but with overriding of getConverter(), i also used a CompoundPropertyModel what happened is that this converter was not

[Wicket-user] conversion

2006-05-10 Thread Ittay Dror
, was rethrown as InvocationException, which was considered unexpected, and so the page was redirected to the error page (rather than showing a conversion error) ittay -- === Ittay Dror Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +9

Re: [Wicket-user] composite component

2006-05-10 Thread Ittay Dror
get) as one. On 5/10/06, *Ittay Dror* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: after troubling many people here, and thankful for their help, here is the CompositeComponent component. you just overwrite two methods, and voila! hope it is useful for

[Wicket-user] getting id attribute from preview

2006-05-10 Thread Ittay Dror
html id of another, and where in the code? thanx, ittay -- ======= Ittay Dror Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081841 http://www.openQRM.org - Keeps your Data-Center

[Wicket-user] composite component

2006-05-10 Thread Ittay Dror
oid detach() { // TODO Auto-generated method stub } } } -- ======= Ittay Dror Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081841 http://www.openQRM.org - Keeps your Data

Re: [Wicket-user] (conceptual) bug in getModelObject()?

2006-05-10 Thread Ittay Dror
opers would think. anyway, the model can't decide, whether to return null or not. it depends on the component. but the component would know whether to call getObject(this) or getRootObject(), according to FLAG_HAS_ROOT_MODEL. -Matej Ittay Dror wrote: then i think this should be more exp

Re: [Wicket-user] (conceptual) bug in getModelObject()?

2006-05-10 Thread Ittay Dror
then i think this should be more explicit. e.g., add to ICompoundModel a getRootObject(), and i think that if that returns null, then return getObject(this) Matej Knopp wrote: Ittay Dror wrote: public final Object getModelObject() { final IModel model = getModel(); if

Re: [Wicket-user] (conceptual) bug in getModelObject()?

2006-05-10 Thread Ittay Dror
same in setModelObject Ittay Dror wrote: public final Object getModelObject() { final IModel model = getModel(); if (model != null) { // If this component has the root model for a compound model if (getFlag(FLAG_HAS_ROOT_MODEL

[Wicket-user] Component.FLAG_XXX are private

2006-05-10 Thread Ittay Dror
i want to overcome the issue which i've just posted about, and to set the FLAG_HAS_ROOT_MODEL to false, but the value is private. can it be made protected? thanx, ittay -- === Ittay Dror Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTEC

[Wicket-user] (conceptual) bug in getModelObject()?

2006-05-10 Thread Ittay Dror
? -- === Ittay Dror Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081841 http://www.openQRM.org - Keeps your Data-Center Up and Running --- Using Tomcat but need to do more? Nee

Re: [Wicket-user] using feedback not based on labels

2006-05-09 Thread Ittay Dror
FeeedbackMessagesModel ;-) (it keeps the array in a transient field) -Igor On 5/9/06, *Ittay Dror* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: ok, i have it. how do i send it? i created an AbstractFeedbackMessages, which has 2 abstract methods: isReadonly() and

Re: [Wicket-user] using feedback not based on labels

2006-05-09 Thread Ittay Dror
e the same utility methods in FeedbackMessages on the joined collection. how does that sound? -Igor On 5/9/06, *Ittay Dror* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: Igor Vaynberg wrote: > so you want to use it outside the model? outside of an

Re: [Wicket-user] using feedback not based on labels

2006-05-09 Thread Ittay Dror
session and page messages yourself and still use the same utility methods in FeedbackMessages on the joined collection. how does that sound? -Igor On 5/9/06, *Ittay Dror* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: Igor Vaynberg wrote: > so you want to use

Re: [Wicket-user] using feedback not based on labels

2006-05-09 Thread Ittay Dror
session messages -Igor On 5/9/06, *Ittay Dror* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: it will be too much of a pain, since most issues are because i'm using wicket in an existing application, built on struts. however, i would appriciate it if you

Re: [Wicket-user] using feedback not based on labels

2006-05-09 Thread Ittay Dror
ext of a model? ittay Igor Vaynberg wrote: give us an html snippet of what you want as the end result and tell us where the components are. it is very difficult to talk on such a huge abstraction level. -Igor On 5/9/06, *Ittay Dror* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]&

Re: [Wicket-user] using feedback not based on labels

2006-05-09 Thread Ittay Dror
"the wicket way" -Igor On 5/9/06, *Ittay Dror* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: thanx, i did look and you do amazing things with wicket however, i still want to do it as i first suggested. the reason is that the function i mentione

[Wicket-user] can feedback panel be generalized?

2006-05-09 Thread Ittay Dror
FeedbackComponent, created through newFeedbackComponent, provided by subclasses? -- === Ittay Dror Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081841 http://www.openQRM.org - Keeps your Data-Center Up and Run

Re: [Wicket-user] Localization

2006-05-09 Thread Ittay Dror
_ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user -- === Ittay Dror Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972-3-6081994 Fax: +972-3-6081841 http:

Re: [Wicket-user] using feedback not based on labels

2006-05-09 Thread Ittay Dror
Hillenius wrote: It's explained in the javadocs. And check out the YUI projects from wicket-stuff and like at the Slider component which has an example of it. Also, see bottom of http://chillenious.wordpress.com/2006/05/03/wicket-header-contributions-with-behaviors/ Eelco On 5/9/06

Re: [Wicket-user] using feedback not based on labels

2006-05-09 Thread Ittay Dror
ok, i got most of it. last question: can the template have a way to loop on a list? if not, then how do you suggest i templatize the messages, so their formatting is kept in the js file? thanx, ittay Ittay Dror wrote: Eelco Hillenius wrote: Or take a look at what'

Re: [Wicket-user] using feedback not based on labels

2006-05-09 Thread Ittay Dror
'variable substitution'? how can i do that? Eelco On 5/9/06, Ittay Dror <[EMAIL PROTECTED]> wrote: hi, i have a feedback based on javascript. basically, i want to populate a javascript function's body with all messages, so it will show them one by one. the final result will

[Wicket-user] using feedback not based on labels

2006-05-09 Thread Ittay Dror
x27;span' tags be replaced? i thing that at least the 'message' span will not, since it uses Label, which replaces the body, not the tag. how can i do this? -- === Ittay Dror Chief architect, openQRM TL, R&D, Qlusters Inc. [EMAIL PROTECTED] +972

Re: [Wicket-user] component input handling

2006-05-09 Thread Ittay Dror
between 2 page loads. With the help of an Button that has the DefaultFormProcessing boolean on false. johan On 5/9/06, *Ittay Dror* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: for me, it is hard to distinguish getInput from getInputAsArray. what use cases do you

Re: [Wicket-user] component input handling

2006-05-09 Thread Ittay Dror
So that it is for developers much easier to build a converter and know what in and out going is. Maybe we could make a convertInput(String[], Class); instead then it is all type save. And we can use the getInputAsArray() everywhere. johan On 5/9/06, * Ittay Dror* <[EMAIL PROTECTED] &

  1   2   >