wiquery vs wicket-jquery-ui

2013-03-08 Thread Oscar Besga Arcauz
wiquery more mature and matched with last wicket libraries; but wicket-jquery-ui more active recently. What do you think ? Oscar Besga Arcauz - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Wicket modal

2013-03-07 Thread Oscar Besga Arcauz
); wModal.setUseInitialHeight(true); wModal.setAutoSize(false); wModal.setAutoSize(false); Isn't this a little complicated ? But I really don't like fixed sizes into HTML... Thanks Oscar Besga Arcauz

Re: Error with Hidden Field and its enum value

2013-03-04 Thread Oscar Besga Arcauz
(Exception e) { log_error(MyEnum.valueOf(s) + s, e); return null; } } @Override public String convertToString(MyEnum myEnum, Locale locale) { return myEnum.name(); } } Oscar Besga Arcauz -Andrea

Error with Hidden Field and its enum value

2013-03-01 Thread Oscar Besga Arcauz
' is not a valid MyType., reporter = myType, level = ERROR]' Any ideas ? Thanks a lot Oscar Besga Arcauz EXAMPLE CODE //Enumerated public enum MyType { myTypeOne, myTypeTwo, andSoOn } // Data class public class MyData implements Serializable { MyType myType

wicket6-ajax-anchorbrowserhistory

2013-02-26 Thread Oscar Besga Arcauz
, HistoryAjaxBehaviour They are based on jQuery and they are working in my code, so feel free to use them The examples can be found in this repo     https://github.com/obaisdefe/wicket6-ajax-anchorbrowserhistory-example Any suggestion or enhacement is wellcome !! Thanks !!! Oscar Besga Arcauz

Request scoped variables, in ajaxrequesttarget

2013-02-13 Thread Oscar Besga Arcauz
on the onDetach method. But I find it not very elegant Any ideas ? Thanks Oscar Besga Arcauz PS. I'm supposing that a ajax event called over one page of one user (session) is not propaged over other pages and other users (sessions

Re: Request scoped variables, in ajaxrequesttarget

2013-02-13 Thread Oscar Besga Arcauz
(RequestCycle rc){     rc.setMetaData(getWicketMetadataData(),this);     }         public static MyEventData getFromRequest(RequestCycle rc){     return rc.getMetaData(METAKEY_MYEVENTDATA);     }     } Oscar Besga Arcauz -Ernesto Reinaldo Barreiro reier...@gmail.com

Re: Request scoped variables, in ajaxrequesttarget

2013-02-13 Thread Oscar Besga Arcauz
(METAKEY_MYEVENTDATA); } } Oscar Besga Arcauz -Bas Gooren b...@iswd.nl escribió: - Para: users@wicket.apache.org De: Bas Gooren b...@iswd.nl Fecha: 13/02/2013 15:35 Asunto: Re: Request scoped variables, in ajaxrequesttarget Well, it's a lot simpler than that. Simply

Insidious error

2013-01-24 Thread Oscar Besga Arcauz
)     ... 26 more      Oscar Besga Arcauz   - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Do not cache pages, nor in application, nor in browser

2013-01-16 Thread Oscar Besga Arcauz
applicationName, IPageStore pageStore, IPageManagerContext context) {     super(applicationName, pageStore, context);     }     @Override     public boolean supportsVersioning() {     return false;     }     } } Oscar Besga Arcauz -Martin Grigorov

Do not cache pages, nor in application, nor in browser

2013-01-15 Thread Oscar Besga Arcauz
();     } } Oscar Besga Arcauz - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

[FYI] X-Frame-Options deny Header

2012-12-12 Thread Oscar Besga Arcauz
and CSRF ) In some forms, however, it blocked updates and inner-reloads (specially when a file upload was involved); it has been a little knigthmare to find what was going on. So I removed this header, setting it only in wicket pages I hope you find it useful.   Oscar Besga Arcauz

Re: Deploy on production: optimization tip tricks

2012-11-25 Thread Oscar Besga Arcauz
approach. (1)        getMarkupSettings().setStripComments(true);     getMarkupSettings().setCompressWhitespace(true);     getMarkupSettings().setStripWicketTags(true); Oscar Besga Arcauz -Serban.Balamaci thespamtr...@gmail.com escribió: - Para: users

After/before creation or serialization

2012-11-25 Thread Oscar Besga Arcauz
! Oscar Besga Arcauz - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: After/before creation or serialization

2012-11-25 Thread Oscar Besga Arcauz
   } Oscar Besga Arcauz -Cedric Gatay gata...@gmail.com escribió: - Para: users@wicket.apache.org De: Cedric Gatay gata...@gmail.com Fecha: 25/11/2012 13:36 Asunto: Re: After/before creation or serialization Hi, I don't know if there is a special Wicket thing, but you can use

Re: After/before creation or serialization

2012-11-25 Thread Oscar Besga Arcauz
and 'if (dao==null) dao = ( ((MyApplicattion)getApplication()).getDao());' Simply if this can be done in another way. Thanks Oscar Besga Arcauz -Martin Grigorov mgrigo...@apache.org escribió: - Para: users@wicket.apache.org De: Martin Grigorov mgrigo...@apache.org Fecha: 25

Re: Deploy on production: optimization tip tricks

2012-11-15 Thread Oscar Besga Arcauz
getJavaScriptLibrarySettings().setJQueryReference( new UrlResourceReference(Url.parse(GOOGLE_URL)););     }     } Oscar Besga Arcauz -Oscar Besga Arcauz/ISNOTES@ISNOTES escribió: - Para: users@wicket.apache.org De: Oscar Besga Arcauz/ISNOTES@ISNOTES Fecha

Deploy on production: optimization tip tricks

2012-11-11 Thread Oscar Besga Arcauz
(foobar)); // Also can use OnLoadHeaderItem Do you havew any other optimization tip tricks (aplication config, etc.) ? I'm thinking to write a wiki page summarizing responses, a 'Deployment' section ... Oscar Besga Arcauz

Re: Wicket page HTML extractor

2012-10-08 Thread Oscar Besga Arcauz
it, comments are welcome Oscar Besga Arcauz Pd. with a little side effect, but I'll talk about it on another mail -Martin Grigorov mgrigo...@apache.org escribió: - Para: users@wicket.apache.org De: Martin Grigorov mgrigo...@apache.org Fecha: 08/10/2012 10:00 Asunto: Re: Wicket

Re: Wicket page HTML extractor

2012-10-08 Thread Oscar Besga Arcauz
I've created a page that responds with the buffer [MyAppPageBuffer] http://pastebin.com/d3UzajiU Reviews and comments are wellcomed ! Oscar Besga Arcauz -Oscar Besga Arcauz/ISNOTES@ISNOTES escribió: - Para: users@wicket.apache.org De: Oscar Besga Arcauz/ISNOTES@ISNOTES

IFormValidator with ajax

2012-10-05 Thread Oscar Besga Arcauz
into the AjaxSubmitLink .onSubmit the data is correctly attached to the models. ¿ Is that supposed to be fine ? ¿ May I use the raw inputs instead of models ? Oscar Besga Arcauz - To unsubscribe, e-mail: users

Re: Re: IFormValidator with ajax

2012-10-05 Thread Oscar Besga Arcauz
Ok, it works fine Thaks ! Oscar Besga Arcauz -Sven Meier s...@meiers.net escribió: - Para: users@wicket.apache.org De: Sven Meier s...@meiers.net Fecha: 05/10/2012 15:01 Asunto: Re: IFormValidator with ajax May I use the raw inputs instead of models ? You can use

Wicket page HTML extractor

2012-10-05 Thread Oscar Besga Arcauz
null;     } } Thanks for your help and excuse my poor english Oscar Besga Arcauz - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Wicket rendering jquery late

2012-09-26 Thread Oscar Besga Arcauz
anyone experienced similar problems ? Other little question: wicket6 uses jquery 1.7.2; has anyone tried with 1.8.x ? Thanks in advance Oscar Besga Arcauz PS. Example code (little long) --- public class MyPage extends WebPage { public MyPage (PageParameters parameters

Re: Wicket rendering jquery late

2012-09-26 Thread Oscar Besga Arcauz
(JavaScriptReferenceHeaderItem.forReference(JQueryResourceReference.get()));     return dependencies;     } } Oscar Besga Arcauz -Martin Grigorov mgrigo...@apache.org escribió: - Para: users@wicket.apache.org De: Martin Grigorov mgrigo...@apache.org Fecha: 26/09/2012 13:49 Asunto: Re: Wicket rendering jquery

Avoid panel's extra div

2012-09-23 Thread Oscar Besga Arcauz
goes wicket panel stuff and enclosing  wicket tag is not present on result page--/wicket I've tried with wicket:panel, wicket:container, wicket:enclosure with no luck... I'm wrong or there's a way.. ? Thanks !! Oscar Besga Arcauz

Re: Avoid panel's extra div

2012-09-23 Thread Oscar Besga Arcauz
Perfect !!! Thanks !!! Oscar Besga Arcauz -Sebastien seb...@gmail.com escribió: - Para: users@wicket.apache.org De: Sebastien seb...@gmail.com Fecha: 23/09/2012 16:55 Asunto: Re: Avoid panel's extra div oops: setRenderBodyOnly(true); On Sun, Sep 23, 2012 at 4:53 PM

Stateless ajax in wicket 6

2012-09-20 Thread Oscar Besga Arcauz
Hi wickers I know thats an old xxx in wicket lands, but I wonder if anyone has done something so far... Or simply make an ajax call to a bookmarable stateless page manually from web page Thanks Oscar Besga Arcauz

New sessions by each petition

2012-09-20 Thread Oscar Besga Arcauz
Besga Arcauz   PS: Hope this email is not duplicated, I send one without subject and it doesn't appear to be on list - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

Re: New sessions by each petition

2012-09-20 Thread Oscar Besga Arcauz
Ok, i've used sessionbind and works as expected ! Also, I've checked that session is auto-binded when you use statefull components - my web tries to stay stateless most time, so this was the cause I saw so many 'new session' logs Thanks !! Oscar Besga Arcauz -Martin Grigorov

Re: Wicket Application instance from outside Wicket Application

2012-09-19 Thread Oscar Besga Arcauz
wicket Oscar Besga Arcauz -Martin Grigorov mgrigo...@apache.org escribió: - Para: users@wicket.apache.org De: Martin Grigorov mgrigo...@apache.org Fecha: 18/09/2012 21:42 Asunto: Re: Wicket Application instance from outside Wicket Application See

Mounting pages

2012-09-18 Thread Oscar Besga Arcauz
Oscar Besga Arcauz - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org