RE: [EXTERNAL] Re: URL changes from AJAX request

2021-05-17 Thread Michael Pritt
wicketstuff urlfragment for something similar. https://github.com/wicketstuff/core/tree/master/urlfragment-parent I can’t remember exactly how this urlfragment worked, I believe it’s also doing some JavaScript magic. But I think it’s not using history API. Manfred > Am 14.05.2021 um 23:00 schrieb Mich

URL changes from AJAX request

2021-05-14 Thread Michael Pritt
I've been searching for help with this issue on the web concerning URL modifications that we need to do from doing an AJAX request (for example adding a sort parameter when a sort option is selected but stay on the page). We don't want to do a redirect and have the redirect added to the history

Good Texts for Wicket

2018-06-08 Thread Michael Koboldt
? Also, if you know of any other texts that you feel would be beneficial, it would be greatly appreciated. Started developing on Wicket recent coming from a Spring background, where I am really enjoying it. So thank you for that!! Cheers, -- * Michael J. Koboldt* THIS COMMUNICATION M

Re: The day Wicket became Apache Wicket 10 years ago!

2017-06-19 Thread Michael Mosmann
Wooohooo:) Am 19. Juni 2017 9:19:03 nachm. schrieb Martijn Dashorst : Today marks the date 10 years ago that the Wicket project graduated from the Incubator to a fully fledged Apache project. The time flies when you're having fun! I would like to thank all our community members for their c

Re: Christmas / new year [NON-BIZ]

2016-12-24 Thread Michael Mosmann
Merry Christmas:) Mit AquaMail Android http://www.aqua-mail.com gesendet Am 24. Dezember 2016 2:46:34 nachm. schrieb Martin Grigorov : Merry Christmas ! On Dec 24, 2016 1:33 PM, "Tobias Soloschenko" < tobiassolosche...@googlemail.com> wrote: Hi all, I wish you a merry christmas and happy

Re: 2 different context paths using one single war file

2015-10-09 Thread Michael Mosmann
Hi, why do you want that? What is the benefit of having the same application under two different path? Michael:) Am 9. Oktober 2015 05:03:18 MESZ, schrieb trlt : >I have developed a Wicket application (MyApplication.war), to be >deployed on >Apache + Tomcat. >It can be invoked

Re: When should one use fragments?

2015-01-21 Thread Michael Mosmann
; just use panels instead. If you want to avoid switching, you can make them invisible.. but it depends on your usecase.. Michael:) Am 21.01.2015 um 12:10 schrieb ChambreNoire: > Hello, > > I'm going over some old code and I have noticed that some devs are using > fragments to s

Re: OT: statistics about open source contributors

2014-07-14 Thread Michael Haitz
ohloh has a lot of interesting statistics, maybe there’s one that shows your numbers. Link: http://www.ohloh.net/people Am 14.07.2014 um 15:25 schrieb Ernesto Reinaldo Barreiro mailto:reier...@gmail.com>>: Hi, I know this is a bit off topic... but any of the smart guys over here knows some g

Re: [6.16] AjaxButton.onSubmit not working after upgrading to wicket 6

2014-07-06 Thread Michael Haitz
please provide the full stacktrace. cheers, Michael Am 06.07.2014 um 05:44 schrieb smallufo : > It seems working now. > But such removal also make theme-switching not working : > > If I enable the ThemeProvider : > >final ThemeProvider themeProvider = new > Bo

Re: custom bootstrap stylesheet

2014-03-21 Thread Michael Haitz
ovider(new SingleThemeProvider(new CcaTheme())); Bootstrap.install(this, settings); cheers, Michael Am 20.03.2014 um 16:47 schrieb Richter, Marvin : > So I do have to override DefaultThemeProvider and return a > BootstrapTheme(ISettings), where in Settings is my custom > CssResourceReference? >

Re: [SPAM] wicket-bootstrap and another webjars components

2014-01-23 Thread Michael Haitz
the fix was merged to master and released with wicket-webjars 0.3.4 https://github.com/l0rdn1kk0n/wicket-webjars/releases/tag/wicket-webjars-parent-0.3.4 Am 25.11.2013 um 10:35 schrieb Martin Grigorov : > Hi, > > I've proposed a fix in wicket-webjars project (Pull Request 4). > Thanks for you

Re: Wicket-bootstrap Bootstrap 3 support

2014-01-23 Thread Michael Haitz
wicket-bootstrap with bootstrap3 support was released yesterday. https://github.com/l0rdn1kk0n/wicket-bootstrap/releases Am 01.10.2013 um 10:14 schrieb Michael Haitz : > hi, > > i've fixed wicket-webjars and pushed a new version (0.3.0) to maven central. > > https://g

Re: 10th aniversary of wicket

2014-01-21 Thread Michael Haitz
+1 for Barcelona ;) Am 20.01.2014 um 11:25 schrieb Ernesto Reinaldo Barreiro : > Hi, > > > On Mon, Jan 20, 2014 at 11:12 AM, Martin Grigorov wrote: > >> I also would like to visit Cuba! :) >> > > Me too! But Cuba it might be a limitation for people from USA due to > embargo. > > >> >> An

Re: Wicket-Bootstrap Question

2014-01-10 Thread Michael Haitz
if you want to use bootstrap on all your pages, then use settings.setAutoAppendResources(true) instead of renderHead() { Bootstrap.renderHead(response); }. cheers, Michael Am 09.01.2014 um 19:32 schrieb Gabriel Landon : > In the init() method of your application class : > &

Re: SSL Offloading and Wicket

2013-12-12 Thread Michael Haitz
you could use "proxyPort“ in your connector configuration, but this will always override ‚getServerPort‘ with this value no matter you’ve a http or https request. Do you use an apache or nginx in front? Am 12.12.2013 um 05:05 schrieb Matthew Welch : > I'm sure I'm missing something simple as

Re: set session-timeout

2013-10-21 Thread Michael Haitz
or you can add the following snippet to your web.xml: TIME_IN_MINUTES cheers, Michael Am 21.10.2013 um 16:34 schrieb francois meillet : > HttpSession httpSession = ((ServletWebRequest) > RequestCycle.get().getRequest()).getContainerRequest().getS

Re: Wicket Bootstrap 3

2013-10-07 Thread Michael Haitz
Hi, there's an issue for that on github, the problem is related to guava 15.0 which contains a non cdi1.0 compatible beans.xml file. https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/234 cheers, Michael Am 07.10.2013 um 17:21 schrieb David Beer : > Hi All > > I am try

Re: wicket form and browser back

2013-10-01 Thread Michael Mosmann
AFAIK does a browser back bypass everything on the page. Maybe it is better to avoid paging if there is dependent state on different pages (use ajax instead and make it single-page). michael:) Am 01.10.13 10:53, schrieb Karl-Heinz Golz: Thank you, Martin, that works well. But next question

Re: Wicket-bootstrap Bootstrap 3 support

2013-10-01 Thread Michael Haitz
hi, i've fixed wicket-webjars and pushed a new version (0.3.0) to maven central. https://github.com/l0rdn1kk0n/wicket-webjars/releases/tag/wicket-webjars-0.3.0 i've also deployed a new 0.9.0-SNAPSHOT version of wicket-bootstrap that uses wicket-webjars 0.3.0. Michael Am 26.09.201

Re: Wicket-bootstrap Bootstrap 3 support

2013-09-25 Thread Michael Haitz
Hi, i've deployed a 0.9.0-SNAPSHOT to sonatype this morning ;) de.agilecoders.wicket wicket-bootstrap-core 0.9.0-SNAPSHOT cheers, Michael Am 25.09.2013 um 14:24 schrieb David Beer : > Hi All > > I am looking at using Bootstrap 3 for our next webapplication layout. I >

Re: Wicket merchandise

2013-09-19 Thread Michael Mosmann
+1 for Martin Grigorov Hi Guys long time no see.. Apparently there are some money left on the wicket merchandise shop (http://www.cafepress.com/apachewicket).. So I suggest that it's time for the community to nominee and vote on who should have a cap, tshirt or coffee mug for their effort.. S

Re: Wicket merchandise

2013-09-19 Thread Michael Haitz
+1 Martin Grigorov Am 18.09.2013 um 21:10 schrieb nino martinez wael : > Hi Guys > > long time no see.. Apparently there are some money left on the wicket > merchandise shop (http://www.cafepress.com/apachewicket).. So I suggest > that it's time for the community to nominee and vote on who sho

Re: "OutOfMemoryError: Java heap space" when i try to upload and show a hundred 100kb pics

2013-09-01 Thread Michael Mosmann
(which is bad). If you use a DynamichImageResource the image is created when the image request comes in. But you have to store your images somewhere else (remove this static list of buffered images) and refer to them with an ID. Michael

RE: Wicket serialization concerns

2013-08-22 Thread Michael Chandler
Michael, This is extremely helpful. Thanks for the detailed explanation! Mike -Original Message- From: Michael Mosmann [mailto:mich...@mosmann.de] Sent: Wednesday, August 21, 2013 11:53 PM To: users@wicket.apache.org Subject: Re: Wicket serialization concerns Am 21.08.13 01:01

RE: Multi select transfer widget

2013-08-22 Thread Michael Chandler
Beautiful! That's exactly it. Thanks so much! Mike -Original Message- From: Colin Rogers [mailto:colin.rog...@objectconsulting.com.au] Sent: Wednesday, August 21, 2013 10:46 PM To: users@wicket.apache.org Subject: RE: Multi select transfer widget Michael, The component I thin

Re: Wicket serialization concerns

2013-08-21 Thread Michael Mosmann
Am 21.08.13 01:01, schrieb Michael Chandler: .. will expose me to a serialization error unless I put it in a Wicket model. Am I correct about this? There is nothing special about the serialization in Wicket. Wicket uses the default Java serialization. So every field not marked as transient

Multi select transfer widget

2013-08-21 Thread Michael Chandler
Hi there, Is anyone aware of a good example of a multi-select transfer widget in Wicket? To be more precise, I'm talking about two multiselect drop down choice select boxes where the left box serves as a collection of available choices and the right box serves as the actual selection(s) from t

Wicket serialization concerns

2013-08-20 Thread Michael Chandler
I could use some input from some of the more experienced Wicket users out there. I'm having a hard time fully understanding when to worry about Wicket attempting to serialize domain model objects, resulting in serialization warnings/errors in the logs. I had been under the impression that if I

Re: How to resolve this java.util.ConcurrentModificationException

2013-08-07 Thread Michael Mosmann
Am 06.08.13 20:03, schrieb saty: ...various wicket panels use this data-manager to request data that they need to display/update etc. I think it matters how you acces this data-manager from your panels. If you use something like this: Application.get().dataManager().doSomething(bla) you shoul

Re: How to resolve this java.util.ConcurrentModificationException

2013-08-06 Thread Michael Mosmann
IMHO nothing in Application is serialized. But its far to easy to leak an instance of this LRU-Map into some components (anon classes). Can you provide some code or error message? Am 06.08.13 18:22, schrieb saty: I need to understand what and when Wicket tries to serialize stuff in a running w

Re: Interesting article from Zeroturnaround

2013-08-01 Thread Michael Mosmann
experience a little bit more quantified .. Its an opinion, not facts. In i will not put something in order.. such as "the winner is.. " because i think this is kind of useless. -igor On Wed, Jul 31, 2013 at 5:47 AM, Michael Mosmann wrote: Am 31.07.13 13:56, schrieb Andrea Del Bene:

Re: Interesting article from Zeroturnaround

2013-07-31 Thread Michael Mosmann
Am 31.07.13 13:56, schrieb Andrea Del Bene: I don't agree with everything in it, but it's a good article anyway :) ... http://zeroturnaround.com/rebellabs/the-curious-coders-java-web-frameworks-comparison-spring-mvc-grails-vaadin-gwt-wicket-play-struts-and-jsf/ I will take some time and put my o

Wicket with Apache Shiro

2013-07-26 Thread Michael Chandler
Has anyone on this list had experience integrating Apache Shiro with their Wicket project? I've had a good deal of luck implementing the basics of Shiro security in my Wicket app, but I'm struggling with their provided caching implementation with EhCache. The cacheManager is defined as a bean

RE: JUnit Tests failing after config change

2013-07-25 Thread Michael Chandler
Oh man. That's exactly it. Obviously, when I'm not running in the Tomcat environment, I'm missing a few things. Thanks for pointing that out Gabriel. I'm right back on track! Cheers! Mike -Original Message- From: Gabriel Landon [mailto:glan...@piti.pf] Sent: Thursday, July 25, 2013

Configuring a JRuby + Wicket environment

2013-07-25 Thread Michael Pence
Hi guys, So I am seriously committed to see if JRuby, Wicket and some elements of Rails (ActiveRecord, esp.) can be made to play nice together. I prefer Intellij, and use RubyMine, but I am also comfortable with Eclipse. The big question to get me started is, how to configure a project in an ID

JUnit Tests failing after config change

2013-07-25 Thread Michael Chandler
In order to support the use of the @SpringBean annotation, I've made some adjustments to my Wicket application that work beautifully right out of the gate. The documentation and assistance from this list helped get me up to speed and working quickly. HOWEVER, my JUnit tests are now failing whe

RE: Double validation in textfield

2013-07-03 Thread Lemke, Michael SZ/HZA-ZSW
On Wednesday, July 03, 2013 4:02 PM, Sven Meier wrote: > >http://stackoverflow.com/questions/15809225/java-numberformat-ignoring-comma-in-us-locale > >i.e. a grouping separator can be at any position *between* digits. Thanks. Whoever came up with that idea... Oh well. Michael >

Double validation in textfield

2013-07-03 Thread Lemke, Michael SZ/HZA-ZSW
id Double. Why does it accept stuff like 6,4? I don't think this is expected behavior. Thanks for any insight, Michael - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Unusual Serialization issue

2013-06-27 Thread Michael Chandler
I'm getting a serialization error when I shutdown Tomcat that has me confused. java.io.NotSerializableException: com.oa.frontoffice.service.AuthenticationService I experienced quite a bit of this at first before learning that Wicket serializes quite heavily, but gained a more thorough understan

Re: A Wicket in Ruby

2013-06-27 Thread Michael Pence
t;>> When things get tricky, simply reduce the problem down to a java quick >>> start and proceed as usual. >>> I find that 99% of the time making a quick start solves the problem, >> when I >>> realize what I'm doing wrong. >>> >>>

Re: A Wicket in Ruby

2013-06-26 Thread Michael Pence
Scala is even more expressive and powerful than Ruby, so Scala + Wicket is definitely my dream stack. I am just nervous about not having a big peer support community when things get tricky. On Jun 25, 2013, at 11:20 PM, Colin Rogers wrote: > Mike, > > Java is still pretty verbose, for all 'r

RE: Wicket with Spring for IOC

2013-06-25 Thread Michael Chandler
013 9:01 AM To: users@wicket.apache.org Subject: Re: Wicket with Spring for IOC Michael Chandler wrote: > > java.lang.IllegalStateException: bean of type > [org.apache.wicket.protocol.http.WebApplication] not found > > Full stack trace below. > If a log record like the l

RE: Wicket with Spring for IOC

2013-06-25 Thread Michael Chandler
java.lang.Thread.run(Thread.java:662) Regards, Mike -Original Message- From: Joachim Schrod [mailto:jsch...@acm.org] Sent: Monday, June 24, 2013 12:28 PM To: users@wicket.apache.org Subject: Re: Wicket with Spring for IOC Michael Chandler wrote: > I'm using Wicket with Spring for

RE: Wicket with Spring for IOC

2013-06-24 Thread Michael Chandler
Spring for IOC Michael Chandler wrote: > I'm using Wicket with Spring for dependency injection and at first > really struggled with what appears to be Wicket serializing my > application context. Then you probably don't use wicket-spring. Or you store your app context in a Wi

Wicket with Spring for IOC

2013-06-24 Thread Michael Chandler
I'm using Wicket with Spring for dependency injection and at first really struggled with what appears to be Wicket serializing my application context. My work-arounds so far have been less than ideal. I'm wondering if anyone can point me in the right direction as far as how to use Spring for I

Re: Server side caching of generated resources

2013-06-18 Thread Michael Haitz
/Respond? best, Michael Am 17.06.2013 um 17:30 schrieb Thomas Heigl : > Hey Michael, > > but isn't it enough to send the correct cache headers + a calculated >> filename that contains the hash of file? > > > I actually have aggressive caching and a CDN in front of

Scala

2013-06-17 Thread Michael Pence
Hello again. Is it cool to ask Scala + Wicket questions here, or is there a better place for that. No hate, but I have been so spoiled by Ruby's conciseness, that I would struggle to go back to the more verbose (though much, much faster) Java syntax, and would prefer Scala for other reasons, as

Re: Server side caching of generated resources

2013-06-17 Thread Michael Haitz
ach resource on all your containers and you need some heap space for the content. best, Michael Am 17.06.2013 um 16:02 schrieb Michael Haitz : > Hi Thomas, > > it depends on your deployment mode: > > if (application.usesDevelopmentConfig()) > { > // developmen

Re: Server side caching of generated resources

2013-06-17 Thread Michael Haitz
resourceVersion = new CachingResourceVersion(new MessageDigestResourceVersion()); } best, Michael Am 17.06.2013 um 15:21 schrieb Thomas Heigl : > Hi all, > > I was wondering if Wicket has a built-in mechanism for caching the > generated byte[] of package resources. I use

Introduction and some questions about Wicket

2013-06-12 Thread Michael Pence
Hi guys, My name is Mike Pence. I think that I have dipped into this list a time or two in the past, but I am here, this time, with serious intent to use Wicket for a very big project -- big both in terms of how many users it will have, and big in its impact. I have been doing Rails for the la

RE: Wicket Security examples

2013-06-11 Thread Michael Chandler
the authentication-1 through authentication-3 examples. Martijn On Tue, Jun 11, 2013 at 7:18 PM, Michael Chandler wrote: > Good morning, > > I'm having a hard time finding some solid example implementations of Wicket > Auth/Roles, specifically regarding authenticat

Wicket Security examples

2013-06-11 Thread Michael Chandler
Good morning, I'm having a hard time finding some solid example implementations of Wicket Auth/Roles, specifically regarding authentication. I think the documentation on the link below is well spelled out, but it would be nice to see an example of Authentication. http://wicket.apache.org/lear

Re: Session creates multiple times

2013-05-16 Thread Michael Zhavzharov
Thank you, Sven! I have created an issue, but I don't know it it right in it's description. https://issues.apache.org/jira/browse/WICKET-5191 But can I do any hack now to get rid of this problem? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Session-creates-multi

Re: Session creates multiple times

2013-05-16 Thread Michael Zhavzharov
Thank you, Martin! I have such stackTrace for all of the newSession() calls: 1)com.alee.urait.web.Urait.newSession(Urait.java:89) 2)org.apache.wicket.Application.fetchCreateAndSetSession(Application.java:1557) 3)org.apache.wicket.Session.get(Session.java:168) 4)org.apache.wicket.

Re: Possible bug with AjaxLazyLoadPanel

2013-05-15 Thread Michael Zhavzharov
Hm, I just tried to do what you are talking about and it works for me. I have an ALLP: add(new AjaxLazyLoadPanel("lazy") { @Override public Component getLazyLoadComponent(*String id*) { return new ContentPanel(*id*); } }); and AjaxLink: a

Session creates multiple times

2013-05-15 Thread Michael Zhavzharov
Hello! I have a webApp, that have a webSession witch creates a connector and many managers. When I starts an app, session creates 2 times. When the page is starting to render it creates another 2 times and every user, when connecting to this app, creates another 2 sessions. I just realized that if

Re: Serving wicket JS from CDN?

2013-04-03 Thread Michael Haitz
Hi, you can use https://developers.google.com/speed/libraries/devguide#Libraries instead of your local resources. e.g. //ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js best, Michael Am 02.04.2013 um 19:27 schrieb Chris Colman : > Is anyone thinking about serving JS required

Re: Serverside caching of IResource's that are expensive to generate

2013-03-26 Thread Michael Haitz
Wicket has a CachingResourceStreamLocator that caches the resource streams. here's my wicket less implementation, could be helpful too: https://github.com/l0rdn1kk0n/wicket-bootstrap/tree/master/bootstrap-less Am 26.03.2013 um 01:01 schrieb Pointbreak : > I have implemented a LessCssResource (

Re: CSS bundles order does not seem stable when using an application

2013-03-18 Thread Michael Haitz
will break the bootstrap images. > > On Sun, 2013-03-17 at 22:45 +0100, Michael Haitz wrote: > >> does adding the bootstrap css resource reference to the bundle solve your >> problem? >> >> sorry, i don't have access to the code at the moment. >> >&g

Re: CSS bundles order does not seem stable when using an application

2013-03-17 Thread Michael Haitz
a tag, the order is > disturbed. > This was not the case when my application was not using > getResourceBundles().addCssBundle in the Application.init. > > On Sun, 2013-03-17 at 16:26 +0100, Michael Haitz wrote: > >> you can add a dependency to the bootstrap resource refer

Re: CSS bundles order does not seem stable when using an application

2013-03-17 Thread Michael Haitz
())); return dependencies; } here's a short introduction to wicket resource management: http://wicketinaction.com/2012/07/wicket-6-resource-management/ best, Michael Am 17.03.2013 um 07:09 schrieb Sylvain Vieujot : > My application is using a resourceBundle to concatenate CSS resourc

Re: Change visibility of a component before onSubmit

2013-03-08 Thread Michael Backmann
I'm using version 6 of Wicket. Meanwhile I have found a solution. I split the interaction in two requests: |AjaxButton confirmButton= new AjaxButton("confirmButton", layoutForm) { @Override protected void onSubmit(AjaxRequestTarget target, Form form) { super.onSubmit(target, for

Change visibility of a component before onSubmit

2013-03-08 Thread Michael Backmann
Hello, I would like to react on the onSubmit-method of an AjaxButton or normal Button. The problem is, I would like to make a panel (a customized progressbar) visible and after this there should be internal work and when it is finished, there should be a change to another page. If I try to put

RE: Eclipse or IntelliJ

2013-02-19 Thread Michael Chandler
I also develop on a Mac, but I use Eclipse. I've become so familiar with the Eclipse tools and shortcut keys along with the Maven plugins and Tomcat Server panel/console that I've never bothered to try anything else, though I should probably put my fears aside and give IntelliJ a spin! Mike -

RE: Forms do not reset after submit

2013-02-19 Thread Michael Chandler
> And is the EntityFactory class something you've built yourself? It is and a quick test revealed that was the culprit! I've got some work to do there. Thanks so much, Bas! Regards, Mike - To unsubscribe, e-mail: users-unsu

RE: Forms do not reset after submit

2013-02-19 Thread Michael Chandler
> This means that your freshly created page instance loads data from a > source which "caches" its data. E.g. your EntityFactory does not > always return a fresh instance. > > So the first question is: how do you link to your "Add a record" page? Bas, following up on your second consideration,

RE: Forms do not reset after submit

2013-02-19 Thread Michael Chandler
uot;caches" its data. E.g. your EntityFactory does not always return a fresh instance. So the first question is: how do you link to your "Add a record" page? Met vriendelijke groet, Kind regards, Bas Gooren Op 19-2-2013 17:12, schreef Michael Chandler: > Good morning all!

RE: Anyone using Wicket-Stuff Facebook

2013-02-18 Thread Michael Chandler
> The browser gets a token back that makes perfect sense and the example is > completed. > How do I "consume" the token? I'll play around with it a bit and let you > know what > I come up with. Thanks for the help. Based on the path I was taking, the redirect URI is the key. Facebook redirec

RE: Anyone using Wicket-Stuff Facebook

2013-02-18 Thread Michael Chandler
ubject: Re: Anyone using Wicket-Stuff Facebook On Mon, Feb 18, 2013 at 1:59 PM, Michael Chandler < michael.chand...@onassignment.com> wrote: > you should be able to define a return URL when a user successfully > authenticates that you host This is the part that I don't understan

RE: Anyone using Wicket-Stuff Facebook

2013-02-18 Thread Michael Chandler
I also plan to use Scribe and spent a little time with it this weekend. My particular example uses LinkedIn, but the implementations would probably be near identical. In this particular example, I'm trying to retrieve the Authorize URL that a user would use to authenticate with LinkedIn. The

RE: Fundamental forms/models issue

2013-02-18 Thread Michael Chandler
! I can see how the former might benefit me down the road, but not for general use. Thanks again everyone. Mike -Original Message- From: Michael Chandler [mailto:michael.chand...@onassignment.com] Sent: Monday, February 18, 2013 10:35 AM To: users@wicket.apache.org Subject: RE: Fund

RE: Fundamental forms/models issue

2013-02-18 Thread Michael Chandler
ation life cycle. Same page can be constructed multiple times if you have a link going to that page and you calll setResponsePage(new MyPage()). More on detachable models: https://cwiki.apache.org/WICKET/detachable-models.html ~ Thank you, Paul Bors On Mon, Feb 18, 2013 at 12:47 P

Fundamental forms/models issue

2013-02-18 Thread Michael Chandler
Good morning/afternoon everyone. I'm having a basic problem fully deciphering how to best manage my forms, specifically related to Models that are attached to forms. Since a Wicket WebPage has it's constructor invoked only one time in the application lifecycle, I'm failing to fully understand

Re: find html tag

2013-02-12 Thread Michael Jaruska
serve the page layout. * * @see org.apache.wicket.Component#onComponentTag(ComponentTag) */ @Override protected void onComponentTag(final ComponentTag tag) { super.onComponentTag(tag); if(!isRootForm()) { tag.setName("span"); } } ~ Thank you, Paul Bors On Tue, Feb 12,

Re: find html tag

2013-02-12 Thread Michael Jaruska
do you mean in beforeRender(final Component component)? On 12.2.2013 9:11, Martin Grigorov wrote: Hi, As Sven suggested - BorderBehavior does exactly this. On Tue, Feb 12, 2013 at 9:08 AM, Michael Jaruska wrote: no way how to modify raw html stream in actual rendering? On 11.2.2013 11

Re: find html tag

2013-02-12 Thread Michael Jaruska
no way how to modify raw html stream in actual rendering? On 11.2.2013 11:50, Michael Jaruska wrote: based on this article: https://cwiki.apache.org/WICKET/component-rendering.html in section onRender() it should be possible to modify markup which is going from wicket (e.g. from .html file

Re: find html tag

2013-02-11 Thread Michael Jaruska
based on this article: https://cwiki.apache.org/WICKET/component-rendering.html in section onRender() it should be possible to modify markup which is going from wicket (e.g. from .html file) and modyfied it send to client. On 11.2.2013 11:34, Michael Jaruska wrote: yes, i need that raw html

Re: find html tag

2013-02-11 Thread Michael Jaruska
erver side state to be in sync with the client side state (modified by your JS). On Mon, Feb 11, 2013 at 11:22 AM, Michael Jaruska wrote: in fact, my panel is menu which is modified by javascript. i need to keep track of the previous selected entry (to get know javascript to disable element)

Re: find html tag

2013-02-11 Thread Michael Jaruska
wrote: Hi, What do you want to do with the markup ? Maybe you don't need to bother with internals like MarkupStream for something that may be solved much easier. On Mon, Feb 11, 2013 at 10:01 AM, Michael Jaruska wrote: thanks, studied. but in my case not working. i don't know why,

Re: find html tag

2013-02-11 Thread Michael Jaruska
html markup for panel, but nothing is displayed. any ideas please? On 10.2.2013 23:21, Sven Meier wrote: See BorderBehavior#beforeRender(Component) on how to iterate over the markup. Sven On 02/10/2013 11:09 PM, Michael Jaruska wrote: my quick test: @Override protected void onRender() {

Re: find html tag

2013-02-10 Thread Michael Jaruska
) you can get hold of the component's markup. With a MarkupStream you can iterate over it. Sven On 02/10/2013 10:23 PM, Michael Jaruska wrote: again with my question: is it possible to get markup in onRender() of the component? have found this article: https://cwiki.apache.org/WICKET

Re: find html tag

2013-02-10 Thread Michael Jaruska
f the component in onRender()? thanks, michael On 23.1.2013 22:47, Martin Grigorov wrote: You can use IMarkupFilter to manipulate the raw markup before being loaded and used by the components. See the implementations in Wicket to see what can be done with such filter. On Wed, Jan 23, 2013 at 11:

Re: Wicket job market

2013-02-04 Thread Michael Mosmann
I agree with you. The one thing i would say:if you want to have a nice presentation of vaadin,it comes out of the box,because thats a vaadin feature:nice presentation. No other framework has it such easy:) So lets start a competition... Michael:) manuelbarzi schrieb: >> I thin

Re: Wicket job market

2013-02-04 Thread Michael Mosmann
d so on... nothing a developer likes to play with (which is IMHO a good thing). I think, this could be changed with wicket 6 (jquery build-in)... but it is a long way. Michael - To unsubscribe, e-mail: users-unsubscr...@wicket.apach

Re: What is wrong/missing in this code, model object deos not get set

2013-02-01 Thread Michael Mosmann
Use AjaxFormSubmitBehavior,not AjaxEventBehavior.. Michael saty schrieb: >IAutoCompleteRenderer renderer = new >AbstractAutoCompleteTextRenderer() > { > private static final long serialVersionUID = 1L; >

Re: find html tag

2013-01-23 Thread Michael Jaruska
such filter. On Wed, Jan 23, 2013 at 11:11 PM, Michael Jaruska wrote: Look at my original post. User clicks on **subsubmenu2, then I have in String "category" (java code) value "menu/submenu/subsubmenu2". I need just to make 2 more steps: 1. in html code find anchor ta

Re: find html tag

2013-01-23 Thread Michael Jaruska
stom model. The model can then load the html and perform string replacement. You can then add a label component which uses the model and has setEscapeModelStrings(false) set. Met vriendelijke groet, Kind regards, Bas Gooren Op 23-1-2013 21:11, schreef Michael Jaruska: I need to find the parent tag

Re: find html tag

2013-01-23 Thread Michael Jaruska
Op 23-1-2013 20:53, schreef Michael Jaruska: Problem is that uls and lis (let's call whole structure "menu") is static html code. On 23.1.2013 20:50, Bas Gooren wrote: Hi! What you want to accomplish (e.g. changing some html attributes) can be done by adding an attributemodifier

Re: find html tag

2013-01-23 Thread Michael Jaruska
oren wrote: Sorry, I read too quickly. What are you trying to accomplish? Let's say you are able to find the appropriate html tag, what do you want to do with it? Met vriendelijke groet, Kind regards, Bas Gooren Op 23-1-2013 21:01, schreef Michael Jaruska: And question is not "how can I c

Re: find html tag

2013-01-23 Thread Michael Jaruska
); Or alternatively: WebMarkupContainer li = new WMC() { onComponentTag(ComponentTag tag) { super(tag); tag.put("my-html-attribute", value); } } Met vriendelijke groet, Kind regards, Bas Gooren Op 23-1-2013 20:45, schreef Michael Jaruska: Hi, is there

Re: find html tag

2013-01-23 Thread Michael Jaruska
onComponentTag(ComponentTag tag) { super(tag); tag.put("my-html-attribute", value); } } Met vriendelijke groet, Kind regards, Bas Gooren Op 23-1-2013 20:45, schreef Michael Jaruska: Hi, is there a way I can find specific html tag in markup? I have this htm

find html tag

2013-01-23 Thread Michael Jaruska
Hi, is there a way I can find specific html tag in markup? I have this html structure: menu submenu subsubmenu1 subsubmenu2 subsubmenu3 I'm processing clicks on anchors with my page: public Pag

Re: Wicket 6+ through JSONP "tunneling"

2013-01-18 Thread Michael Mosmann
AFAIK a GTW app is nothing more then a script and a div tag on the client page.. dont know which protocoll GWT uses for server communication... MattyDE schrieb: >so Google-WebToolkit is able to communicate through JSONP with the >server? >Because i really have to ask the server for data (back

Re: Wicket 6+ through JSONP "tunneling"

2013-01-18 Thread Michael Mosmann
Maybe you should use GWT instead... Michael MattyDE schrieb: >We have to implement a Wicket-driven webapp which could be easily >included in >any other customer HTML-"WebPage" without a java-driven webserver >(could be >also php or only html or anything else). >

Re: Are Wicket models loaded concurrently ?

2012-12-25 Thread Michael Mosmann
If you want to speedup thing, you should trigger some model loading as early as possible.. (It is too late, if a component calls IModel.getObject() (should return the right value)). Because wicket uses one thread per request you must use an other thread for loading. This way you could speedup a

Re: Illegal utf characters in ajax xml response

2012-12-18 Thread Michael Mosmann
Am 15.12.2012 06:22, schrieb Martin Makundi: We could use AjaxSelfUpdatingTimerBehavior to iterate over most characters and see where it fails (which could be easily detected).. As today i only know of 0x1a as a bad one. Michael Mosmann OK, is possibly trivial

RE: Wicket training - instructor led

2012-12-13 Thread Michael Chandler
/learn/books/ :) -Original Message- From: Michael Chandler [mailto:michael.chand...@onassignment.com] Sent: Thursday, December 13, 2012 11:52 AM To: users@wicket.apache.org Subject: Wicket training - instructor led Greetings! I was hoping someone might be able to point me in the right

Re: wicket-bootstrap navbar - SEARCH button

2012-11-21 Thread Michael Haitz
Hi, i've added support for forms (and all other components) to Navbar component. Please have a look at https://github.com/l0rdn1kk0n/wicket-bootstrap/blob/master/samples/src/main/java/de/agilecoders/wicket/samples/pages/IssuesPage.java best, Michael Am 15.11.2012 um 14:24 schrieb heapi

Re: wicket-bootstrap navbar - SEARCH button

2012-11-14 Thread Michael Haitz
hi, do you want to use wicket-bootstrap or do you want to implement it by yourself? best, Michael Am 23.10.2012 um 13:45 schrieb ronny.v...@consult.nordea.com: > Hi There > > Any with a quick answer on how to implement a search like in: > http://wb.agilecoders.de/demo/compone

Re: Multiple AjaxLazyLoadingPanel's never load

2012-10-15 Thread Michael Zhavzharov
Thank You very much, Martin! I am ashamed that I did not solve this problem by myself. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Multiple-AjaxLazyLoadPanel-s-never-load-tp4652907p4652975.html Sent from the Users forum mailing list archive at Nabble.com. -

  1   2   3   4   5   6   7   8   9   10   >