Re: Ajax refresh problem with WebMarkupContainer and CSS class in DeploymentMode

2010-03-23 Thread Ilja Pavkovic
Hi, this looks wrong: / span] use /span Best Regards, Ilja Pavkovic Am Dienstag, 23. März 2010 10:28:41 schrieb Peter Diefenthaeler: Hi Wicket Folks, I have a little problem using a WebMarkupContainer with Ajax refresh in Deployment Mode. The page shows a table like the sorting

LoadableDetachableListModel

2010-03-18 Thread Ilja Pavkovic
(createModel(entity)); } protected abstract IModelT createModel(T entity); } -- binaere bauten gmbh · tempelhofer ufer 1a · 10961 berlin +49 · 171 · 9342 465 Handelsregister: HRB 115854 - Amtsgericht Charlottenburg Geschäftsführer: Dipl.-Inform. Ilja Pavkovic, Dipl.-Inform

Re: AutoCompleteTextField bug

2010-03-10 Thread Ilja Pavkovic
Hi, The component works fine in the Chrome browser. The behavior described above was in IE8. I'm currently using wicket 1.3.6. You should upgrade to 1.4.7 and see if the problem still occurs. Best Regards, Ilja Pavkovic -- binaere bauten gmbh · tempelhofer ufer 1a · 10961 berlin

Re: Session expired drives me mad!

2010-03-08 Thread Ilja Pavkovic
entity objects. They are managed by spring orm, therefore use a specialized LoadableDetachableModel in MyFormPanel that dynamically load your objects if needed. Best Regards, Ilja Pavkovic -- binaere bauten gmbh · tempelhofer ufer 1a · 10961 berlin +49 · 171 · 9342 465 Handelsregister

Re: how to get domain name

2010-03-05 Thread Ilja Pavkovic
); } return header; Best Regards, Ilja Pavkovic -- binaere bauten gmbh · tempelhofer ufer 1a · 10961 berlin +49 · 171 · 9342 465 Handelsregister: HRB 115854 - Amtsgericht Charlottenburg Geschäftsführer: Dipl.-Inform. Ilja Pavkovic, Dipl.-Inform. Jost Becker

Re: Wicket used for mobile.walmart.com

2010-02-25 Thread Ilja Pavkovic
Hi, how did you measure the system performance? I know that you investigated some time for improving wicket performace and I see you created jolirium. Did you use this for multiuser performance measurements? Or anything else? Best Regards, Ilja Pavkovic Am Mittwoch, 24. Februar 2010

Re: Timeouts when requesting resources from a jar

2010-02-18 Thread Ilja Pavkovic
and the timeout stops the transmission. Best Regards, Ilja Pavkovic Am Donnerstag, 18. Februar 2010 01:25:24 schrieb Adam Bender: Greetings, This is kind of an odd problem so I will do my best to explain it. First our environment: We are running a wicket 1.4 app inside Tomcat Tomcat

Re: best way to detect session termination

2010-02-18 Thread Ilja Pavkovic
user = _userDao.getBySessionId(sessionId); if (user != null) { // do the work here... } } } } Andreas -Original Message- From: Ilja Pavkovic [mailto:ilja.pavko...@binaere-bauten.de] Sent: Wednesday, February 17, 2010 5:38 PM To: users

Re: best way to detect session termination

2010-02-17 Thread Ilja Pavkovic
@Transactional public class MyService { @Autowired private MyDao dao; public destroySession(String sessionId) { myDao.deleteMySessionById(sessionId); } } Best Regards, Ilja Pavkovic Am Mittwoch, 17. Februar 2010 13:24:11 schrieb Andreas Lüdtke: Vineet

Re: Large number components and redering time

2010-02-17 Thread Ilja Pavkovic
...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- binaere bauten gmbh · tempelhofer ufer 1a · 10961 berlin +49 · 171 · 9342 465 Handelsregister: HRB 115854 - Amtsgericht Charlottenburg Geschäftsführer: Dipl.-Inform. Ilja Pavkovic, Dipl.-Inform. Jost

Re: jdbc

2010-02-15 Thread Ilja Pavkovic
berlin +49 · 171 · 9342 465 Handelsregister: HRB 115854 - Amtsgericht Charlottenburg Geschäftsführer: Dipl.-Inform. Ilja Pavkovic, Dipl.-Inform. Jost Becker - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: jdbc

2010-02-15 Thread Ilja Pavkovic
)); } public Milk createMilk(ResultSet rs) { // do not use an OR/mapper here but do the dirty work on your own} public Honey provideHoney(int id) {//read from database, again do the dirty work on your own } } 2010/2/15 Ilja Pavkovic ilja.pavko...@binaere-bauten.de: use

Re: Howto load StringResources from Database for Iternationalization?

2010-01-29 Thread Ilja Pavkovic
(createMyIStringResourceLoader()); } obviously you will have to implement createMyIstringResourceLoader :) Best Regards, Ilja Pavkovic -- binaere bauten gmbh · tempelhofer ufer 1a · 10961 berlin +49 · 171 · 9342 465 Handelsregister: HRB 115854 - Amtsgericht Charlottenburg

ModalWindow as confirmation dialog for forms

2010-01-29 Thread Ilja Pavkovic
the changes to the form. Best Regards, Ilja Pavkovic -- binaere bauten gmbh · tempelhofer ufer 1a · 10961 berlin +49 · 171 · 9342 465 Handelsregister: HRB 115854 - Amtsgericht Charlottenburg Geschäftsführer: Dipl.-Inform. Ilja Pavkovic, Dipl.-Inform. Jost Becker

Re: SV: Override fragments in subclasses

2010-01-25 Thread Ilja Pavkovic
115854 - Amtsgericht Charlottenburg Geschäftsführer: Dipl.-Inform. Ilja Pavkovic, Dipl.-Inform. Jost Becker - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: SV: Override fragments in subclasses

2010-01-25 Thread Ilja Pavkovic
is that you have added a component in code but forgot to reference it in the markup (thus the component will never be rendered).1. [Component id = myDiv] What did I miss? Thank you. Ilja Pavkovic-3 wrote: public abstract class MyPage extends WebPage { public MyPage

Re: Page refresh increases size of pagemap disk storage

2010-01-23 Thread Ilja Pavkovic
Hi, I think at least you increase the version number of the page with every refresh (as your page seems to have state). Therefore the PageMap keeps the old revisions of your page. Best Regards, Ilja Pavkovic Am Samstag, 23. Januar 2010 08:42:49 schrieb Andrew Lombardi: I've got

Re: Override fragments in subclasses

2010-01-22 Thread Ilja Pavkovic
class. Best Regards, Ilja Pavkovic -- binaere bauten gmbh · tempelhofer ufer 1a · 10961 berlin +49 · 171 · 9342 465 Handelsregister: HRB 115854 - Amtsgericht Charlottenburg Geschäftsführer: Dipl.-Inform. Ilja Pavkovic, Dipl.-Inform. Jost Becker

Re: Lazy loading

2010-01-11 Thread Ilja Pavkovic
; }; window.wicketGlobalPostCallHandler = function() { window.getElementById(veil).style.display=none; }; javascript may not work as I personally use jquery here to get some more fance fadeIn fadeOut and I just wrote it down here :) Best Regards, Ilja Pavkovic Am Montag, 11. Januar

Re: Lazy loading

2010-01-11 Thread Ilja Pavkovic
Pavkovic Am Montag, 11. Januar 2010 17:21:27 schrieb Douglas Ferguson: On Jan 11, 2010, at 8:00 AM, Ilja Pavkovic wrote: Hi, use a veil. You could use this one: http://wicketinaction.com/2008/12/preventing-double-ajax-requests-in-3-li nes- of-code/ or (as I personally think it bloats

Re: Lazy loading

2010-01-11 Thread Ilja Pavkovic
and/or ideas addressing this problem. I must admit that I am in an IE6-ignore mode. Therefore further investigations must be done on your own. Best Regards, Ilja best regards giovanni From: Ilja Pavkovic ilja.pavko...@binaere-bauten.de To: users

Re: component xxx:yyy:zzz not found on page

2010-01-10 Thread Ilja Pavkovic
http://www.lmgtfy.com/?q=wicket+veil Best Regards, Ilja Pavkovic Am Samstag, 9. Januar 2010 22:32:06 schrieb Douglas Ferguson: Anybody have any thoughts on how to systematically deal with this problem rather than updating every link to disable after onclick.. D/ On Jan 8, 2010

Re: Autosize modal window

2010-01-07 Thread Ilja Pavkovic
Hi, I forgot the following line: modalWindow.setUseInitialHeight(false); Best Regards, Ilja Pavkovic Am Donnerstag, 7. Januar 2010 12:40:25 schrieb Kogel, Jonck-van-der: Hi Ilja, Ok, that's good, I'm not using PageCreator. But how do I then make the ModalWindow autosize? Perhaps I'm

Re: Autosize modal window

2010-01-07 Thread Ilja Pavkovic
-Original Message- From: Ilja Pavkovic [mailto:ilja.pavko...@binaere-bauten.de] Sent: donderdag 7 januari 2010 13:51 To: users@wicket.apache.org Cc: Kogel, Jonck-van-der Subject: Re: Autosize modal window Hi, I forgot the following line: modalWindow.setUseInitialHeight(false

Re: Wicket and Spring - mocking a particular bean when Wicket is in development mode?

2010-01-07 Thread Ilja Pavkovic
your WebApplication is instantiated. Best Regards, Ilja Pavkovic Am Donnerstag, 7. Januar 2010 23:05:23 schrieb Liam Clarke-Hutchinson: Hi all, This is probably more of a Spring question than a Wicket question, but I'm asking here in the hopes that someone else has done this before

Re: Autosize modal window

2010-01-06 Thread Ilja Pavkovic
ufer 1a · 10961 berlin +49 · 171 · 9342 465 Handelsregister: HRB 115854 - Amtsgericht Charlottenburg Geschäftsführer: Dipl.-Inform. Ilja Pavkovic, Dipl.-Inform. Jost Becker - To unsubscribe, e-mail: users-unsubscr

Re: error page

2010-01-04 Thread Ilja Pavkovic
-2659 Best Regards, Ilja Pavkovic -- binaere bauten gmbh · tempelhofer ufer 1a · 10961 berlin +49 · 171 · 9342 465 Handelsregister: HRB 115854 - Amtsgericht Charlottenburg Geschäftsführer: Dipl.-Inform. Ilja Pavkovic, Dipl.-Inform. Jost Becker

Re: error page

2009-12-31 Thread Ilja Pavkovic
InternalErrorPage(Exception e) use this one to create the class? reqauestcycle.onruntimeexception(exception e) { return new myerrorpage(e); } You acces the exception via the constructor. Best Regards, Ilja Pavkovic when is InternalErrorPageused and when is myerrorpage used ? and also

Re: Too Many Open Files Wicket 1.4.1

2009-12-30 Thread Ilja Pavkovic
: HRB 115854 - Amtsgericht Charlottenburg Geschäftsführer: Dipl.-Inform. Ilja Pavkovic, Dipl.-Inform. Jost Becker - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

Re: GAE big table PageStore

2009-12-24 Thread Ilja Pavkovic
Hi, http://lmgtfy.com/?q=google+app+engine+wicket first link :) Best Regards, Ilja Pavkovic Am Donnerstag, 24. Dezember 2009 10:56:51 schrieb sudhir543-...@yahoo.com: I need to write app specifically for GAE, I know Disk based page store wouldnt work. Is there any existing solution

Re: File Upload Issues

2009-12-19 Thread Ilja Pavkovic
Hi, did you check the output of the wicket debug window? Perhaps any error line shows up? Best Regards, Ilja Pavkovic Am Freitag, 18. Dezember 2009 21:13:11 schrieb Corbin, James: Doug, I retested on IE6, IE7, FF3 and IE6 is the only browser that the issue shows up in. IE7

add javascript code to form onsubmit=

2009-12-14 Thread Ilja Pavkovic
Hi, I am inside a Form and want to add some javascript code dynamically to the onsubmit method of the outer form. Can anyone point me to a wicket compatible solution for this? Best Regards, Ilja Pavkovic -- binaere bauten gmbh · tempelhofer ufer 1a · 10961 berlin +49 · 171 · 9342

Re: add javascript code to form onsubmit=

2009-12-14 Thread Ilja Pavkovic
is bound to the most outer form. Best Regards, Ilja Pavkovic -- binaere bauten gmbh · tempelhofer ufer 1a · 10961 berlin +49 · 171 · 9342 465 Handelsregister: HRB 115854 - Amtsgericht Charlottenburg Geschäftsführer: Dipl.-Inform. Ilja Pavkovic, Dipl.-Inform. Jost Becker

Re: FileUploadField in a ModalWindow (wicket 1.4.3)?

2009-12-11 Thread Ilja Pavkovic | Apliki
...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Ilja Pavkovic

Re: FileUploadField in a ModalWindow (wicket 1.4.3)?

2009-12-11 Thread Ilja Pavkovic
Regards, Ilja Pavkovic Am Freitag, 4. Dezember 2009 08:38:18 schrieb Igor Vaynberg: sounds like we may have to search up the component tree until we find a form... can you create a quickstart and attach it to the jira issue? -igor On Thu, Dec 3, 2009 at 10:43 PM, Doug Leeper douglee

Re: JNDI and mvn test

2009-12-08 Thread Ilja Pavkovic
the maven lifecycle test know about jetty specific configuration files read by the jetty plugin? You could use simple-jndi for your purposes. I could provide you an example if you want to give it a try. Best Regards, Ilja Pavkovic -- binaere bauten gmbh · tempelhofer ufer 1a · 10961 berlin

Re: file descriptor leak

2009-12-03 Thread Ilja Pavkovic
Regards, Ilja Pavkovic Am Donnerstag, 3. Dezember 2009 11:40:04 schrieb Johan Compagner: ahh i did knew that there was already code for that in place but thats only in the lastMofified() method... of that UrlResourceStream not in the constructor.. On Thu, Dec 3, 2009 at 10:56, Maarten

Re: InvalidUrlException considered evil?

2009-12-02 Thread Ilja Pavkovic
, Ilja -- binaere bauten gmbh · tempelhofer ufer 1a · 10961 berlin +49 · 171 · 9342 465 Handelsregister: HRB 115854 - Amtsgericht Charlottenburg Geschäftsführer: Dipl.-Inform. Ilja Pavkovic, Dipl.-Inform. Jost Becker

Re: PageExpiredException: Cannot find the rendered page in session

2009-11-20 Thread Ilja Pavkovic
Hi, Ok I just want to clarify that if we get: [pagemap=null,componentPath=20,versionNumber=0] pagemap null thats not a problem? pagemap with name null indicates the default pagemap. Everything is fine :) Best Regards, Ilja Pavkovic -- binaere bauten gmbh · tempelhofer ufer 1a

Re: multi file upload question

2009-11-18 Thread Ilja Pavkovic
but they are not unified nor available for all browsers. Best Regards, Ilja Pavkovic On Mon, Nov 16, 2009 at 3:51 PM, Pieter Degraeuwe pieter.degrae...@systemworks.be wrote: The multiple files upload is achieved by a flash object. It works both in firefox as chrome (but, indeed

Re: wicketstuff.org down?

2009-11-08 Thread Ilja Pavkovic
Dear Martijn, THE server had been moves to another ip. I havent had time to update dns perhaps you can tell us the ip so I am able to use the maven repository while the dns update is not yet synchronized with the rest of the dns world? Best regards, Ilja Pavkovic On Saturday

Re: wicketstuff.org down?

2009-11-08 Thread Ilja Pavkovic
/mirror /mirrors /settings Best Regards, Ilja Pavkovic On Sun, Nov 8, 2009 at 10:46, Ilja Pavkovic ilja.pavko...@binaere-bauten.de wrote: Dear Martijn, THE server had been moves to another ip. I havent had time to update dns perhaps you can tell us the ip so I am able

wicketstuff.org down?

2009-11-07 Thread Ilja Pavkovic
Hi, I cannot reach wicketstuff.org anymore. Anyone else experiencing this problem? Best Regards, Ilja Pavkovic -- binaere bauten gmbh · tempelhofer ufer 1a · 10961 berlin +49 · 171 · 9342 465 Handelsregister: HRB 115854 - Amtsgericht Charlottenburg Geschäftsführer: Dipl.-Inform

Re: I18N for bookmarkable urls

2009-10-26 Thread Ilja Pavkovic
does not help: add(new BookmarkablePageLink(link, ImprintPage.class)); Does anyone have a good idea? Best regards, Ilja Pavkovic - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

I18N for bookmarkable urls

2009-10-22 Thread Ilja Pavkovic
, ImprintPage.class)); Does anyone have a good idea? Best regards, Ilja Pavkovic -- binaere bauten gmbh · tempelhofer ufer 1a · 10961 berlin +49 · 171 · 9342 465 Handelsregister: HRB 115854 - Amtsgericht Charlottenburg Geschäftsführer: Dipl.-Inform. Ilja Pavkovic, Dipl.-Inform. Jost