Re: Adding css resource available to all component in the application using wicket 9.x

2021-09-07 Thread Francois Meillet
Hi Arunachalam, Migration From Wicket 7 to 8 setHeaderResponseDecorator(new JavaScriptToBodyCustomResponseDecorator("footer")); Wicket 8 setHeaderResponseDecorator(response -> { return new ResourceAggregator(new JavaScriptFilteredIntoFooterHeaderResponse(response, "footer")); });

examples9x certificate is expired

2021-08-24 Thread Francois Meillet
Hi, certificate of http://examples9x.wicket.apache.org is expired François - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Job opening, Wicket developer, full time remote position

2021-07-27 Thread Francois Meillet
Hi Martin, Do you want I tweet about your job on Apache Wicket Twitter account @apache_wicket ? If so please give me the link where users can see the job description. Best regards François > Le 27 juil. 2021 à 11:44, Martin Terra a > écrit : > > Hi! > > We are looking for a talented

Re: RestartResponseException ajaxbutton

2021-07-21 Thread Francois Meillet
yes page id = null Thanks Sven, François > Le 21 juil. 2021 à 16:32, Sven Meier a écrit : > > page id

RestartResponseException ajaxbutton

2021-07-20 Thread Francois Meillet
I have two pages (identical) called PageOne and PageTwo, each with a form, mounted with an UnVersionedUrlMapper. When I do a RestartResponseException in the submit (via an AjaxButton) to the same page (from pageOne to pageOne), the PageOne's constructor is called twice.

Re: resources in wicket have problem.

2021-06-08 Thread Francois Meillet
Could you disable JavaScript in your browser and test your page ? Or in your MetronicAssets, comment all JavaScriptReferenceHeaderItems. PS: create a quickstart with this tool https://wicket.apache.org/start/quickstart.html François > Le 8

Error 502 for examples8x

2020-12-23 Thread Francois Meillet
There is a 502 for https://examples8x.wicket.apache.org/index.html François

Re: Wicket Migration: Where has AjaxPostprocessingCallDecorator gone

2020-09-14 Thread Francois Meillet
Look at https://cwiki.apache.org/confluence/display/WICKET/Wicket+Ajax#WicketAjax-o.a.w.ajax.IAjaxCallDecoratorisreplacedwitho.a.w.ajax.attributes.IAjaxCallListener. François > Le 14 sept. 2020 à 10:15, Stefan Lindner a écrit > : > > Or in general: where is IAjaxCallDecorator now in Wicket

Re: Locatable UnsupportedOperationException

2020-05-30 Thread Francois Meillet
e.com/javase/specs/jls/se11/html/jls-11.html <https://docs.oracle.com/javase/specs/jls/se11/html/jls-11.html> François > Le 30 mai 2020 à 16:52, smallufo a écrit : > > Francois Meillet 於 2020年5月30日 週六 下午10:48寫道: > >> sompage?67-1.-border-content-border_body-form is

Re: Locatable UnsupportedOperationException

2020-05-30 Thread Francois Meillet
> org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) > >at > org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:810) > >at > org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEn

Re: Locatable UnsupportedOperationException

2020-05-30 Thread Francois Meillet
e lots of models , nested panels , forms > , even in one page... > Informative error message can make us quickly understand which model needs > to implement setObject. > (just like the un-serializable field error message) > > Thanks. > > > Francois Meillet <mailt

Re: Locatable UnsupportedOperationException

2020-05-30 Thread Francois Meillet
Hi, Depending on the model you use, you may need to ovveride the setObject() method. from the API docs default void setObject​(T object) Throws: UnsupportedOperationException - unless overridden

which framework is your favorite ?

2020-05-29 Thread Francois Meillet
Matt Raible (@mraible) made a pool : Which framework is your favorite ? (Spring + Thymeleaf, JSF, Wicket , Vaadin) https://twitter.com/mraible/status/1266039711795081222 François

reddit : Opinions on using Java for frontend development ?

2020-05-28 Thread Francois Meillet
https://www.reddit.com/r/java/comments/grme3u/opinions_on_using_java_for_frontend_development/ François

reddit : Is using a Java framework an outdated approach to web development? If so, why ?

2020-05-28 Thread Francois Meillet
https://www.reddit.com/r/webdev/comments/grmkvx/is_using_a_java_framework_an_outdated_approach_to/ François

Re: ClassCastException:JavaURLContext cannot be cast to class org.xx.xxx

2020-02-23 Thread Francois Meillet
There is no formComponents in your form. So why do you use a form ? François > Le 22 févr. 2020 à 02:32, LSomefun a écrit : > > I have been on this issue for atleast 2 weeks now. Trying to use Wicket with > EJB. This occurs when I use @EJb for either a stateless or stateful bean . > > *My

Re: ClassCastException:JavaURLContext cannot be cast to class org.xx.xxx

2020-02-23 Thread Francois Meillet
Could you show the PrescientTemplateOriginalPage code ? François > Le 22 févr. 2020 à 02:32, LSomefun a écrit : > > I have been on this issue for atleast 2 weeks now. Trying to use Wicket with > EJB. This occurs when I use @EJb for either a stateless or stateful bean . > > *My code below

Re: WicketRuntimeException: The component(s) below failed to render. A common problem is that you have added a component in code but forgot to reference

2020-01-17 Thread Francois Meillet
Hi Prasanna, Could you make a quickstart ? François > Le 17 janv. 2020 à 19:29, prasanna bajracharya > a écrit : > > Dear Wicket Community, > > I am a new to wicket. I am trying to run someone else's legacy code in my > local machine which is currently working in production environment.

Re: Wicket's error message-> java.lang.IllegalStateException: This container is already dequeing

2019-12-29 Thread francois meillet
you are adding the header and the footer panels in the child page but the html tag is in the super class. François > Le 28 déc. 2019 à 22:35, LSomefun a écrit : > > I do appreciate you looking at this while on holiday. The 2nd constructor of > PrescientTemplateOriginalPage I have deleted.

Re: Wicket's error message-> java.lang.IllegalStateException: This container is already dequeing

2019-12-28 Thread francois meillet
There are few problems I can see (from my mobile, being on hollidays ) First you should not pass component to PrescientTemplateOriginalPage constructor's argument. Second : in the second constructor you do not add the panels to the page Third : in the html code the header and footer tags are not

Re: Wicket's error message-> java.lang.IllegalStateException: This container is already dequeing

2019-12-27 Thread Francois Meillet
Could you show us the new stacktrace and the PrescientTemplateOriginalPage code ? François > Le 27 déc. 2019 à 22:51, LSomefun a écrit : > > Thanks for your reply Francois, much appreciated. Even when I adjust my code > and remove the login object from the source code and from the html tag

Re: Wicket's error message-> java.lang.IllegalStateException: This container is already dequeing

2019-12-27 Thread Francois Meillet
If what you want is redirecting the user to the Login page after the form submit, you need to remove all references to the Login class in the PrescientHome class, then in the form # onSubmit you can use the code setResponsePage(Login.class). Have a look at wicket links and wicket forms

Re: Application # newSession # sessionUnbound - RuntimeException

2019-11-21 Thread Francois Meillet
read where there is a ThreadContext, i.e. >>>> Application.get(), Session.get() and RequestCycle.get() would work >>>> here, I think, Wicket should use the ExceptionMapper >>>> 2) when the user session has timed out - in this case the web container >>>> (Tomcat

Re: Application # newSession # sessionUnbound - RuntimeException

2019-11-21 Thread Francois Meillet
on.get() would be null, so we cannot get a reference to the > ExceptionMapper > > On Thu, Nov 21, 2019 at 5:01 PM Francois Meillet > wrote: > >> Hi, >> >> Any RuntimeException thrown in Application # newSession(Request request, >> Response response) is han

Application # newSession # sessionUnbound - RuntimeException

2019-11-21 Thread Francois Meillet
Hi, Any RuntimeException thrown in Application # newSession(Request request, Response response) is handled by the DefaultExceptionMapper # mapUnexpectedExceptions(Exception e, final Application application) but Any RuntimeException thrown in Application # sessionUnbound(String sessionid) is

Re: Wicket blog

2019-11-09 Thread Francois Meillet
Hi Roman, FYI : https://twitter.com/apache_wicket/status/1193233346798723072 François > Le 9 nov. 2019 à 18:02, Roman Sery a écrit : > > Hello, > I have been working with Wicket for many years now and really love it, and > I've

Re: 404 : https://wicket.apache.org/learn/#javadoc JavaDoc 9.x

2019-10-08 Thread Francois Meillet
>> https://markmail.org/message/ac65iqbmwjdlugz3 >> >> I will try to find a working solution for it this week. >> >> Martin >> >> >> On Mon, Oct 7, 2019 at 11:17 AM Francois Meillet < >> francois.meil...@gmail.com> wrote: >>

404 : https://wicket.apache.org/learn/#javadoc JavaDoc 9.x

2019-10-07 Thread Francois Meillet
Hi, There is a 404 for https://ci.apache.org/projects/wicket/apidocs/9.x/index.html François

Re: non-serializable objects to feed a DropDownChoice

2019-08-28 Thread Francois Meillet
Why don't you use a pojo that could be a simplified view of your domain class (dto) ? François > Le 28 août 2019 à 20:49, René Stolle a écrit : > > Hello there, > > my domain classes are mostly not serializable. Making use of > LoadableDetachableModels I have no problems execpt of one

Instant : Unsupported field: YearOfEra when cookieUtils.cookieToDebugString() is called

2019-06-21 Thread Francois Meillet
https://issues.apache.org/jira/browse/WICKET-6678 François François

receiving email from from p.davids@hea.jetzt when posting on users@wicket.apache.org

2019-06-21 Thread Francois Meillet
When I send an email to users@wicket.apache.org I receive this automatic email from p.davids@hea.jetzt Guten Tag, die E-Mailadresse des Empfängers hat sich geändert. Gern leiten wir Ihre E-Mail weiter. Bitte ändern Sie für zukünftige

Fast2WicketSerializer StackOverflowError

2019-06-21 Thread Francois Meillet
Hi, I get a strange StackOverflowError with Fast2WicketSerializer Env : Wicket version 9.0.0.M2 and previous with Fast2WicketSerializer quickstart : https://issues.apache.org/jira/browse/WICKET-6679 When Session.get() is called in a non serialized object and session.getMetaData(MetaDataKey) is

Wicket 9 migration guide : No such URL

2019-06-20 Thread Francois Meillet
There is no html data for Wicket 9 migration guide https://s.apache.org/wicket9migration : No such URL François

Re: Notify Action to the Parent Class

2019-05-26 Thread Francois Meillet
Hi Sibgha, // here is a simple code // // in your Dpanel // protected void onUpdate(AjaxRequestTarget target) { send(getPage(), Broadcast.EXACT, new YourEvent(yourDataFromYourDropDownChoice)); } // // in your HomePage, you override the onEvent method // @Override public void

Re: setHeaderResponseDecorator and setGatherExtendedBrowserInfo(true)

2019-04-24 Thread Francois Meillet
In the application.init() add the following line : getResourceBundles().add(YourApplication.class, new JavaScriptResourceReference(BrowserInfoForm.class, "wicket-browser-info.js")); YourApplication.class is the {@linkplain ResourceReference#getScope() scope} of your bundle François > Le

Re: Model map with enum as a key

2019-02-04 Thread Francois Meillet
keys? Even if I try to iterate through the map I get > the same ClassCastException. > Somehow Wicket managed to insert String as a key instead of enum. > > Zbynek > > > > On Mon, Feb 4, 2019 at 1:55 PM Francois Meillet > wrote: > >> use MyEnum.valueOf(&qu

Re: Model map with enum as a key

2019-02-04 Thread Francois Meillet
use MyEnum.valueOf("your string ») before saving the data François > Le 4 févr. 2019 à 13:51, Zbynek Vavros a écrit : > > I got this class that has map with enums as keys: > > public class MasterClass { > >private Map config = Maps.newHashMap(); > } > > enum is classic: > > public

Re: An open source git server written with Wicket

2019-01-07 Thread Francois Meillet
https://twitter.c https://twitter.com/apache_wicket/status/1052796668012310528 om/apache_wicket/status/1052796668012310528z 18 Oct 2018 François > Le 7 janv. 2019 à 13:29, Andrea Del Bene a écrit : > > Very nice and

Re: Using the summernote rich text editor with Wicket

2018-12-03 Thread Francois Meillet
Hi Dylan, Have a look at https://github.com/l0rdn1kk0n/wicket-bootstrap/blob/wicket-7.x/bootstrap-samples/src/main/java/de/agilecoders/wicket/samples/pages/SummernotePage.java

http://examples7x.wicket.apache.org/ is down

2018-11-21 Thread Francois Meillet
http://examples7x.wicket.apache.org/ is down François - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: ModalWindows in a listView

2018-10-31 Thread Francois Meillet
have a look at Component setMarkupId(String markupId) François > Le 31 oct. 2018 à 14:01, JavaTraveler a écrit : > > Ok, so how would you do it ? > > -- > Sent from: > http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html > >

Re: ModalWindows in a listView

2018-10-31 Thread Francois Meillet
because all yours modakwindow have the same id. François > Le 31 oct. 2018 à 09:47, JavaTraveler a écrit : > > Hello everyone, > > I have a question. Is it possible to add modal windows in a listView. I have > tried, but it doesn't on wich line I click, the corresponding modal window > will

Re: Feedback panel not displaying

2018-10-29 Thread Francois Meillet
Could you do a quickstart ? François > Le 29 oct. 2018 à 18:42, SeldonCrisis a écrit : > > Okay, I'm calling form.error() now instead. Unfortunately it didn't solve my > issue :( > > On the first click this was printed: > 00af SystemOut O ERROR LandingPage_Cp10 Does the form have >

Re: Feedback panel not displaying

2018-10-29 Thread Francois Meillet
also when you call error(), you call it on your component, not on the form. you should call it like this : private boolean activeSessionExist(Form form){ OCPSession session = (OCPSession)WebSession.get(); if(session.getTrackingId() != null){ log.error("Active session found.

Re: Feedback panel not displaying

2018-10-29 Thread Francois Meillet
works great for me. @Override protected void onInitialize() { super.onInitialize(); Form form = new Form("form"); add(form); FeedbackPanel feedback = new FeedbackPanel("feedback"); feedback.setOutputMarkupId(true); form.add(feedback); form.add(new

Re: Feedback panel not displaying

2018-10-29 Thread Francois Meillet
Hi, Can’t see your code in your message. François > Le 29 oct. 2018 à 15:40, SeldonCrisis a écrit : > > Hey guys, > > I have an AjaxButton() that is being added to a WebMarkupContainer. > > Within the onSubmit() of the button, I check to see whether there is already > an active session

Re: Problem with DiskDataStore

2018-04-18 Thread Francois Meillet
you can count all open file handles via lsof | wc -l François > Le 18 avr. 2018 à 17:42, Francois Meillet <francois.meil...@gmail.com> a > écrit : > > Hi Claudia, > > you need to update the limits in the linux kernel > have a look at > https://serverfault.com

Re: Problem with DiskDataStore

2018-04-18 Thread Francois Meillet
Hi Claudia, you need to update the limits in the linux kernel have a look at https://serverfault.com/questions/20387/too-many-open-files-on-debian?utm_medium=organic_source=google_rich_qa_campaign=google_rich_qa

@apache_wicket Twitter account

2018-02-22 Thread Francois Meillet
Today @apache_wicket Twitter account https://twitter.com/apache_wicket has 40 new followers and received 4,361 impressions over the last 24 hours ! You like your framework ? Share the success ! Follow @apache_wicket https://twitter.com/apache_wicket

Re: How to format number in (Number)TextField?

2017-10-24 Thread Francois Meillet
You can use an input with a mask something like Have a look at https://igorescobar.github.io/jQuery-Mask-Plugin/ François > Le 24 oct. 2017 à 14:37, Maxim Solodovnik a écrit : > > I believe you can override

exemples are down

2017-10-11 Thread Francois Meillet
Hi, https://examples8x.wicket.apache.org/app got 404 https://examples7x.wicket.apache.org/app connection is not secure https://examples6x.wicket.apache.org/app connection is not secure François - To unsubscribe, e-mail:

Re: After removing history from browser, refresh an unmounted stateful page trigger a NPE in PageProvider

2017-07-25 Thread Francois Meillet
On Tue, Jul 25, 2017 at 10:22 PM, Francois Meillet < > francois.meil...@gmail.com> wrote: > >> Hi Martin, >> >> I just clean the browser’s cache >> >> François >> >> >> >>> Le 25 juil. 2017 à 21:13, Martin Grigorov <mgr

Re: After removing history from browser, refresh an unmounted stateful page trigger a NPE in PageProvider

2017-07-25 Thread Francois Meillet
t Training and Consulting > https://twitter.com/mtgrigorov > > On Tue, Jul 25, 2017 at 4:12 PM, Francois Meillet < > francois.meil...@gmail.com> wrote: > >> Hi Devs, >> >> If I perform a refresh on an unmounted stateful page after having cleaned >> the browser h

Re: How reload necessary Panel inside common layout?

2017-05-30 Thread Francois Meillet
Have a look at https://ci.apache.org/projects/wicket/guide/8.x/single.html#_working_with_ajax François > Le 30 mai 2017 à 14:32, Sokab a écrit : > > Hi. I follow this post > ( >

Proxy Error 502 for http://examples7x.wicket.apache.org/index.html

2017-05-30 Thread Francois Meillet
The proxy server received an invalid response from an upstream server. The proxy server could not handle the request GET /index.html. Reason: Error reading from remote server François - To unsubscribe, e-mail:

Re: Source code" option on example page returns 500

2017-05-29 Thread Francois Meillet
gt; Examples 8.x uses Wildfly 10 because Wicket 8.x needs Servlet 3.1.0 and >> there is no option of using Tomcat 8.5+ at OpenShift. >> >> Wildfly (and previous versions of JBoss) are famous with their custom >> modules impl that makes reading of classpath much harder than a normal &

Source code" option on example page returns 500

2017-05-29 Thread Francois Meillet
Hi Examples Website Maintainer, "Source code" option on example page returns 500 - any chance for solving this problem? E.g. here: examples8x.wicket.apache.org/forminput/ Thanks François

Re: Unable to retrieve row model in DataTable while running the application in Jetty

2017-04-25 Thread Francois Meillet
ndardDataTable dataTable = new StandardDataTable("dataTable", > columns, this.getDataProvider()); > > And that's the only place I use a data provider. > > I don't override it's model. > > In my data provider I don't call detach. > > > On Fri, Apr 21, 2017 at 4:2

Re: Unable to retrieve row model in DataTable while running the application in Jetty

2017-04-21 Thread Francois Meillet
Hi James, Do you use the same DataProvider for your DataTable ? Do you use the same model when you override DataTable # IModel model(T object); Do you call detach ? François > Le 21 avr. 2017 à 09:38, James Selvakumar a écrit : > > Hi all, > > I have a DataTable with

nice tutorial : "Call Apache Wicket from Javascript / Back Button Behavior"

2017-04-14 Thread Francois Meillet
For all those who are interested by this subject, have a look at this very good tutorial https://twitter.com/apache_wicket/status/852786047746322434 François - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: AjaxClientInfoBehavior - Ajax request:SyntaxError: function statement requires a name

2017-03-13 Thread Francois Meillet
t; > On Mon, Mar 13, 2017 at 3:23 PM, Francois Meillet < > francois.meil...@gmail.com <mailto:francois.meil...@gmail.com>> wrote: > >> AbstractDefaultAjaxBehavior >> >> protected final CharSequence renderAjaxAttributes(final Compo

Re: AjaxClientInfoBehavior - Ajax request:SyntaxError: function statement requires a name

2017-03-13 Thread Francois Meillet
to debug why it > works it would be helpful! > Mikhail is going to implement the missing #put(String, Collection|Map) > methods and make a release. Then we will update all branches! > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On

Re: AjaxClientInfoBehavior - Ajax request:SyntaxError: function statement requires a name

2017-03-13 Thread Francois Meillet
ne reported by Sebastien. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Mon, Mar 13, 2017 at 8:09 AM, Francois Meillet < > francois.meil...@gmail.com> wrote: > >&g

AjaxClientInfoBehavior - Ajax request:SyntaxError: function statement requires a name

2017-03-13 Thread Francois Meillet
I forgot to say : Apache Wicket 8.0.0-M4 François

AjaxClientInfoBehavior - Ajax request:SyntaxError: function statement requires a name

2017-03-13 Thread Francois Meillet
Hi, I add an AjaxClientInfoBehavior to a page. Sometimes I get an error. This is very strange and I have no clue. I have 2 computers, 1 Debian, 1 Osx, within the same network. If I compile the code on the Osx boxe, publish the war on a Tomcat instance running on the Osx box or on the Debian

Re: NullPointerException on submitting a form in a modal window

2017-02-22 Thread Francois Meillet
When the RemarkForm is instancied, addButtons() is called. At this point the modalWindow is null. So the modalWindow argument given to the AddRemarkButton constructor is null. You should modify the RemarkForm constructor to something like public RemarkForm(String id, ModalWindow modalWindow) {

Re: NullPointerException on submitting a form in a modal window

2017-02-22 Thread Francois Meillet
The AddRemarkButton source code you show is not the one who generated the exception. The exception has been thrown line 32 in the submit method. The source code you show has only 22 lines Put a breakpoint in the onSubmit method. François > Le 22 févr. 2017 à 11:16, Manfred Bergmann

Re: Christmas / new year [NON-BIZ]

2016-12-24 Thread Francois Meillet
Joyeux Noel ! François > Le 24 déc. 2016 à 14:46, Martin Grigorov a écrit : > > 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 new year. :-)

Re: Twitter poll result 2

2016-11-18 Thread Francois Meillet
>> easier since they have a commercial company behind it, and it seems to m >> they have joined the forces with other commercial entities (like JRebel and >> people behind jOOQ), but this is just my impression. After the ApacheCon I >> hope to find the time to write more on

Re: Iterate through lines from datatable with editable columns

2016-11-15 Thread Francois Meillet
Looks like some formcomponent (or form) validation fails. So the model is not updated. François > Le 15 nov. 2016 à 15:45, ganea iulia a écrit : > > Hello, > I m using wicket 7.5. > > I have a datatable, where some of the columns contain editable components: >

Re: bypass the FormComponent # validateRequired()

2016-11-14 Thread Francois Meillet
Hi Martin, Thanks, I did not see #onValidateModelObjects() which is perfect. François > Le 14 nov. 2016 à 21:01, Martin Grigorov <mgrigo...@apache.org> a écrit : > > Hi François, > > > On Thu, Nov 10, 2016 at 6:34 PM, Francois Meillet < > francois.meil

Re: CsrfPreventionRequestCycleListener Link 400

2016-11-14 Thread Francois Meillet
> 'protected boolean isChecked(IRequestHandler handler)' to whitelist specific > requests. Perhaps you can tag safe links and skip checking those. This > solution offers you the most flexibility, but requires more work and you need > to be very precise in what requests to allow. &

CsrfPreventionRequestCycleListener Link 400

2016-11-13 Thread Francois Meillet
Hi, When I use a CsrfPreventionRequestCycleListener, clicking a Link<> while holding the command key does not open link in new tab. (Wicket 8.0.0-M2 / OSX) I get this error : HTTP ERROR 400 Problem accessing /. Reason: Origin does not correspond to request Clicking a BookmarkablePageLink is

bypass the FormComponent # validateRequired()

2016-11-10 Thread Francois Meillet
Hi, I have a main form which may contain one to multiple subforms. Subform's models have validations constraints annotations and I can't modify the models source code. (then I can’t remove the constraints annotations) Each subform has 1 button. When clicked, complete validation is done, which

Re: public static IModel of(IModel model)

2016-11-01 Thread Francois Meillet
https://github.com/apache/wicket/commit/533431d7ebda97f5c77a3d8bc1b2445fa5caebfb > ? > > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Tue, Nov 1, 2016 at 1:02 PM, Francois Meillet <francois.meil...@gmail.com >> wr

public static IModel of(IModel model)

2016-11-01 Thread Francois Meillet
Hi, Why this helper method public static IModel of(IModel model) has been removed from Wicket 8 ? Was useful for me ! François - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

Twitter poll result 2

2016-11-01 Thread Francois Meillet
Hi, Following Tobias Soloschenko thread about the Twitter poll result I think we should focus on who who don't know Wicket. People who don't like Wicket, the unhappy users, will not come back. Only 34% of the respondents know what is Apache Wicket. Put another way 66% don't ever know what is

Re: Problems with Wicket 7.5.0 and Wicket Bootstrap 0.10.10 using a custom NotificationPanel

2016-10-27 Thread Francois Meillet
super ! François > Le 27 oct. 2016 à 15:17, Martin Grigorov a écrit : > > 0.10.11 should be at Maven Central any time soon! > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Thu, Oct 27, 2016 at 3:06 PM, Martin Grigorov

BootstrapPagingNavigator - Wicket-Boostrap 0.10.10 and Wicket 7.5.0

2016-10-27 Thread Francois Meillet
Wicket-Boostrap 0.10.10 and Wicket 7.5.0 When using a BootstrapPagingNavigator, I get this error : Last cause: The component(s) below failed to render. Possible reasons could be that: 1) you have added a component in code but forgot to reference it in the markup (thus the component will never

Re: Check Group selected items called from other form loses the checked values

2016-10-20 Thread Francois Meillet
ropertyModel(item.getModel(), > "id"))); > Check chk = new Check("itemCheck", item.getModel(), > group); > > item.add(chk); > } > }); > group.add(itemsContainer); > add(group); > } > > @Override > protected void onSubmit() { > &g

Re: Check Group selected items called from other form loses the checked values

2016-10-19 Thread Francois Meillet
Have a look at https://cwiki.apache.org/confluence/display/WICKET/Listview+with+checkboxes https://www.mkyong.com/wicket/wicket-multiple-checkboxes-example-checkboxmultiplechoice/

Re: add some javascript callbacks to Wicket-Bootstrap # Summernote Editor configuration

2016-10-09 Thread Francois Meillet
gt; "callbacks" would extend from de.agilecoders.wicket.jquery.AbstractConfig. > "onXyz" would be be > a de.agilecoders.wicket.jquery.function.AbstractFunction. See the default > impls. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgri

Wicket-Bootstrap # Summernote Editor : placeHolder and maxlength

2016-10-08 Thread Francois Meillet
Hi, In Wicket-Bootstrap # Summernote Editor, How can I add a placeHolder text ? How can I add some kind of maxlength ? Thanks for your help François - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For

add some javascript callbacks to Wicket-Bootstrap # Summernote Editor configuration

2016-10-08 Thread Francois Meillet
Hi, How can I add some javascript callbacks to Wicket-Bootstrap # Summernote Editor configuration, like the following $(document).ready(function () { $('.summernote').summernote({ callbacks: { onKeydown: function (e) { var t =

examples7x.wicket.apache.org --> 502 Proxy Error

2016-10-05 Thread Francois Meillet
Hi, http://examples7x.wicket.apache.org/index.html is down. There is a 502 Proxy Error François

examples7x.wicket.apache.org --> 502 Proxy Error

2016-09-04 Thread Francois Meillet
http://examples7x.wicket.apache.org/index.html is down. There is a 502 Proxy Error http://examples6x.wicket.apache.org/index.html is OK. François - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: ModalWindow.PageCreator()#createPage() is loading login page unexpectedly sometimes

2016-08-31 Thread Francois Meillet
= null; > > function resetSessionTimer() { > try{ > if(document.getElementById('sessionTimeoutInterval')) { > sessionPingTime = document.getElementById('sessionTimeoutInterval').value; > } > if(parent) { > parent.clearTimeout(parent.sessionTimerId); > parent.sessionTimer

Re: ModalWindow.PageCreator()#createPage() is loading login page unexpectedly sometimes

2016-08-31 Thread Francois Meillet
Hi, What is the session-timeout ? Can you show the html page header ? and any java code that modify it. François > Le 31 août 2016 à 15:49, durairaj t a écrit : > > I'm migrating to wicket 6.23, createPage() is working as expected in many > modules, but not in the

Re: Style Sheet in page head

2016-07-07 Thread Francois Meillet
and so on), but are not in the html page. François > Le 7 juil. 2016 à 13:12, Peter Henderson <peter.hender...@starjar.com> a > écrit : > > Thanks François > > > > On Thu, Jul 7, 2016 at 11:51 AM, Francois Meillet < > francois.meil...@gmail.com <ma

Re: Style Sheet in page head

2016-07-07 Thread Francois Meillet
You don't define id and type so there are null. just add id="yourid" type="text/css" François > Le 7 juil. 2016 à 12:24, Peter Henderson a > écrit : > > Hello, > > > I might have found a small bug. > > I have a control which has a style sheet link in

Re: wicket:head and ajax updates

2016-06-02 Thread Francois Meillet
Hi Ravi, a stupid question : are you sure the updated value is different from the original value ? François > Le 2 juin 2016 à 11:07, Ravi a écrit : > > @Ernesto > I added the version to my post. > > @Martin > It is present in the Ajax response as well as in

Re: Trouble updating ListEditor with a detachable model

2016-04-12 Thread Francois Meillet
Do you use session.save(object) ? Should be session.saveOrUpdate(object) or session.update(object) François Le 11 avr. 2016 à 23:34, ChambreNoire a écrit : > Hi, > > I'm trying to use the ListEditor component from the Wicket in Action blog > (). I'm giving it a

Re: Panel.this always giving previous version of the object but not the modified one.

2016-04-11 Thread Francois Meillet
Hi, In order to help you, you should show us the code you use for the MyTextFieldPanel class and the modal window content (The PageCreator or the component you use). Even better, try to do a quickstart. https://wicket.apache.org/start/quickstart.html François Le 11 avr. 2016 à

Re: Is there any pointers to change the markup header of a column or propertyColumn ?

2016-03-09 Thread Francois Meillet
If you want to your own html, you need to create an object that extends PropertyColumn Let's say that XXXPropertyColumn extend PropertyColumn You need to override the populateItem(Item item, String componentId, IModel rowModel) method for example @Override public void

Re: Wicket model problem

2016-02-20 Thread Francois Meillet
e/qttwc5kunubl6ieo > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Fri, Feb 19, 2016 at 7:19 PM, Francois Meillet < > francois.meil...@gmail.com> wrote: > >> You can also use a IDetachListener to check that no one LDM (

Re: Wicket model problem

2016-02-19 Thread Francois Meillet
You can also use a IDetachListener to check that no one LDM (field) is attached after the page#detach() has been called. In the Application#init() you can add getFrameworkSettings().setDetachListener( new IDetachListener() { @Override public void

Re: Wicket model problem

2016-02-19 Thread Francois Meillet
see the LoadableDetachableModel # isAttached() method which return the attached status of this model instance François Le 19 févr. 2016 à 16:47, Bas Gooren a écrit : > Hi, > > I think the only way to track this is with custom code (or with aspects for > example). > >

Re: JsonRequestLogger --> JsonMappingException --> StackOverflowError Infinite recursion

2016-02-18 Thread Francois Meillet
> Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Thu, Feb 18, 2016 at 10:39 AM, Francois Meillet < > francois.meil...@gmail.com> wrote: > >> >> Before the 7.0.0 release, wicket-extension used >> >>

Re: JsonRequestLogger --> JsonMappingException --> StackOverflowError Infinite recursion

2016-02-18 Thread Francois Meillet
ons. > Having both methods looks like a solution but it may break if the > application uses older version of Jackson. > I think it should work. > Can you try it ? > > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > >

Re: JsonRequestLogger --> JsonMappingException --> StackOverflowError Infinite recursion

2016-02-18 Thread Francois Meillet
8 févr. 2016 à 08:24, Martin Grigorov <mgrigo...@apache.org> a écrit : > Hi, > > > On Wed, Feb 17, 2016 at 12:10 PM, Francois Meillet < > francois.meil...@gmail.com> wrote: > >> Dear Team, >> >> The JsonRequestLogger is not working correctly: >

  1   2   3   4   >