RE: Dynamic javascript generation

2010-03-21 Thread Stefan Lindner
Generate some Javasript in response to e.g. a button klick? Or generate JavaScript when the page is rendered? -Ursprüngliche Nachricht- Von: Sigmar Muuga [mailto:meedi...@gmail.com] Gesendet: Sonntag, 21. März 2010 19:53 An: users@wicket.apache.org Betreff: Dynamic javascript generation

AW: Dynamic javascript generation

2010-03-21 Thread Stefan Lindner
changes. Dealing with resources provides more reliable configuration etc.. Sigmar On Sun, Mar 21, 2010 at 9:19 PM, Stefan Lindner wrote: > Generate some Javasript in response to e.g. a button klick? > Or generate JavaScript when the page is rendered? > > -Ursprüngl

RE: Dynamic javascript generation

2010-03-21 Thread Stefan Lindner
: Sonntag, 21. März 2010 21:36 An: users@wicket.apache.org Betreff: Re: Dynamic javascript generation My tags are all in specific order, so how can I put this script right after some certain script tag there? Sigmar On Sun, Mar 21, 2010 at 10:31 PM, Stefan Lindner <lind...@visionet.de>wrote: > Ok,

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

2010-03-23 Thread Stefan Lindner
MY HTML-Validator stumbles upon the line [Yes] Ist the space betwenn / and span. Maybe Wicket stumbles upon this? Stefan -Ursprüngliche Nachricht- Von: Peter Diefenthaeler [mailto:pdief...@csc.com] Gesendet: Dienstag, 23. März 2010 10:29 An: users@wicket.apache.org Be

RE: Wicketstuff versioning

2010-03-23 Thread Stefan Lindner
Should we really start with a big bang? Support wicketstuff STABLE core releases for Wicket 1.4 AND 1.5RCx? Is a RC for Wicket 1.5 in sight? Or does this mean everything in wicketstuff will stay as it is for a long time? Why not start with a smaller step and create a core wicketstuff release for

RE: Wicketstuff updated!

2010-03-24 Thread Stefan Lindner
Hi Boris, thank you for doing the job. I have tested jWicket again and everything looks fine. Stefan -Ursprüngliche Nachricht- Von: Boris Goldowsky [mailto:bgoldow...@cast.org] Gesendet: Mittwoch, 24. März 2010 22:14 An: users@wicket.apache.org Betreff: Wicketstuff updated! As discuss

RE: css resources location

2010-03-25 Thread Stefan Lindner
If you use "background-image : url(' ')", the path of the url is relative to the location of your css. So if you write "background-image : url('images/myimg.png')" you need a subdirectory imags where your css is e.g. /mypackage/mycss.css /mypackages/images/myimg.png Do you use imag

RE: Wicket JavaScript Library Integration - A Common Base

2010-03-26 Thread Stefan Lindner
This sounds exactly like the thing I'm looking for. A small and simple framework for HeaderContribution. Stefan -Ursprüngliche Nachricht- Von: ce...@jweekend.com [mailto:ce...@jweekend.com] Im Auftrag von Cemal Bayramoglu Gesendet: Freitag, 26. März 2010 14:26 An: users Betreff: Re: Wic

How to render any Component

2010-03-29 Thread Stefan Lindner
How can I implement a Loop or ListView that can display any wicket component? Let's have a HTML lik this How can I write a Loop like add(new Loop("loop", 10) { protected void populateItem(LoopItem item) { item.add( new ("item") );

AW: How to render any Component

2010-03-29 Thread Stefan Lindner
! Here: http://code.google.com/p/wicket-mashup/ ** Martin 2010/3/29 Stefan Lindner : > How can I implement a Loop or ListView that can display any wicket > component? > > Let's have a HTML lik this > >         > > How can I write a Loop like >

AW: How to render any Component

2010-03-29 Thread Stefan Lindner
: How to render any Component Well, I hope one day (1.5?) it will be part of wicket ;) We are trying to invent some nifty behavior that allows a panel to digest markupless components. ** Martin 2010/3/29 Stefan Lindner : > Hi Martin, > > ok, no easy way, no wicket-builtin tools. Thank

jWicket 0.5.7

2010-03-30 Thread Stefan Lindner
jWicket 0.5.7 is comitted to wicktstuff core's trunk. It shows an implementation of a simple drop down menu. The menu uses jQuery only for IE6 issues. Take a look at the example TestPage. As always: if someone needs jar files... let me know. Teh jQuery-ui-menu implemenatiion is in a very early stat

RE: better way setting up ID for a Wicket component?

2010-03-30 Thread Stefan Lindner
Yes! Von: Boris Goldowsky [mailto:bgoldow...@cast.org] Gesendet: Di 30.03.2010 23:06 An: users@wicket.apache.org Betreff: Re: better way setting up ID for a Wicket component? IDs are needed for e.g. AJAX functionality. The default Wicket implementation of mar

AW: Fading Content Updates Into a Ajax Refreshing ListView

2010-03-30 Thread Stefan Lindner
Yes, this can be done with javascript. First of all you must decide which javascript library you want to use (scriptaculous/jQuery/etc.) Then you need to load it in your section (use some HeaderContributor class for this). Now when you repaint yout list items with target.addComponent(it

RE: Handling jquery events

2010-03-31 Thread Stefan Lindner
Hi Josh, take a look at jWicket in wicketstuff core. There you can find a lot of examples how yo can re-act on jQuery events. E.g. ondrop, onresize, onclose, onstart... Stefan -Ursprüngliche Nachricht- Von: Josh Kamau [mailto:joshnet2...@gmail.com] Gesendet: Mittwoch, 31. März 2010 11

RE: Handling jquery events

2010-03-31 Thread Stefan Lindner
-Ursprüngliche Nachricht- Von: Josh Kamau [mailto:joshnet2...@gmail.com] Gesendet: Mittwoch, 31. März 2010 11:26 An: users@wicket.apache.org Betreff: Re: Handling jquery events Thanks Stefan. i will. On Wed, Mar 31, 2010 at 12:22 PM, Stefan Lindner wrote: > Hi Josh, > > take a look a

AW: Best Practices for Using JavaScript With Wicket

2010-04-06 Thread Stefan Lindner
Hi Nishant, you should use component.setOutputMarkupId(true); this tells wicket to generate a unique markup id. You can refer to the generated id with component.getMerkupId(); later. If you want to add some javascript to your page, you may use two different tricks: A: Ajax-rel

AW: Javascript from panel does not work

2010-04-07 Thread Stefan Lindner
To make it sure (it's better than just belive it): Take e.g. firefox with fiurebug-plugin. Inspect the head scetion of the page. There go to the tag and expand the tag. IF the js-file is referenced correctly and if it is loaded then the content should be visible in firebug. Or place a simple

AW: resource (css) loading

2010-04-07 Thread Stefan Lindner
You could e.g. write your own page class class MyCustomersPage extens Page { @Override public void renderHead(HtmlHeaderContainer container) { super.renderHead(container); cssResourceReference = Session.get().

AW: jqery not getting called after ajax refresh

2010-04-09 Thread Stefan Lindner
Just some ideas: 1. After the Ajax action, the element that are target of the ajax call ere replaced in the DOM. The function that you bind ONCE and ONLY ONE in header are not automatically appliet to the replaced elements. 2. Does it hatten in IE too? I know of a similar problem that effects on

STump

2010-04-13 Thread Stefan Lindner
I was not able to build stump from http://sourceforge.net/apps/trac/stump (stump is new for wicket bench). Can anybody help me? Maven says: [INFO] Failed to resolve artifact. Couldn't find a version in [1.0.0-v20070606] to match range [1.0.0,2.0.0) org.eclipse.equinox:

RE: Wicket 1.4 and Wicketstuff/Dojo/DragAndDrop

2008-11-04 Thread Stefan Lindner
rs Betreff: Re: AW: Wicket 1.4 and Wicketstuff/Dojo/DragAndDrop Wichtigkeit: Hoch Hi Stefan, Op vrijdag 25-04-2008 om 18:03 uur [tijdzone +0200], schreef Stefan Lindner: > To all the other WicketStuff Dojo users: I have successfully built a > version for current wicket 1.4 trunk. If someone

WIcket 1.4 IndicatingAjaxFallbackLink

2008-11-05 Thread Stefan Lindner
IndicatingAjaxFallbackLink is not generic. It extends AjaxFallbackLink public abstract class IndicatingAjaxFallbackLink extends AjaxFallbackLink which is generic public abstract class AjaxFallbackLink extends Link implements IAjaxLink I think IndicatingAjaxFallbackLink should be

RE: WIcket 1.4 IndicatingAjaxFallbackLink

2008-11-05 Thread Stefan Lindner
Great! Thank you! -Ursprüngliche Nachricht- Von: Igor Vaynberg [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 5. November 2008 17:18 An: users@wicket.apache.org Betreff: Re: WIcket 1.4 IndicatingAjaxFallbackLink it is generic in trunk. -igor On Wed, Nov 5, 2008 at 12:55 AM, Stefan

RE: WIcket 1.4 IndicatingAjaxFallbackLink

2008-11-05 Thread Stefan Lindner
@wicket.apache.org Betreff: Re: WIcket 1.4 IndicatingAjaxFallbackLink it is generic in trunk. -igor On Wed, Nov 5, 2008 at 12:55 AM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > IndicatingAjaxFallbackLink is not generic. It extends AjaxFallbackLink > >public

RE: WIcket 1.4 IndicatingAjaxFallbackLink

2008-11-05 Thread Stefan Lindner
up and it will be generified. -igor On Wed, Nov 5, 2008 at 2:52 PM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > I checked out trunk from http://svn.apache.org/repos/asf/wicket/trunk and > IndicatingAjaxFallbackLink is still not generic. Am I using the wrong trunk >

how to replace 2.0's reAttach

2008-11-07 Thread Stefan Lindner
What is the perfect way to replace the reattach method of wicket 2.0 in Wicket 1.4? Is it correct to replace the 2.0 expressioin myComponent.reAttach() with addOrReplace(myComponent); Stefan - To unsubscribe, e

RE: how to replace 2.0's reAttach

2008-11-07 Thread Stefan Lindner
Thanks Igor! -Ursprüngliche Nachricht- Von: Igor Vaynberg [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 7. November 2008 22:14 An: users@wicket.apache.org Betreff: Re: how to replace 2.0's reAttach yes -igor On Fri, Nov 7, 2008 at 1:10 PM, Stefan Lindner <[EMAIL PROTECTED

AW: form being posted many times

2008-11-10 Thread Stefan Lindner
Why don't you use a LazyLoadPanel? May this be an option? -Ursprüngliche Nachricht- Von: eyalbenamram [mailto:[EMAIL PROTECTED] Gesendet: Montag, 10. November 2008 12:17 An: users@wicket.apache.org Betreff: form being posted many times Hi I have a login page (with a form) that redirects

RE: ModalWindow and Component.writeObject

2008-11-12 Thread Stefan Lindner
those are also serialized. On 11/12/08, Stefan Lindner <[EMAIL PROTECTED]> wrote: > I have a ModalWindow with a page as content, not a panel. Wn Ajax button on > this modal window starts another modal window inside the first modal window > (Page as content not a panel). This seco

ModalWindow and Component.writeObject

2008-11-12 Thread Stefan Lindner
I have a ModalWindow with a page as content, not a panel. Wn Ajax button on this modal window starts another modal window inside the first modal window (Page as content not a panel). This second modal window holds a Button. The Button has an AjaxEventBehavior Button mybutton = new butto

RE: OFF TOPIC - all-in-one wysiwyg website package?

2008-11-13 Thread Stefan Lindner
Take a look at Joomla 1.5 (www.joomla.org). If you have a linux box with Apache/php/MySql the Joomla installation is just to unzip the distribution and run a litte menu driven install program. Administration is easy, plugins for nearly every purpose are available. 3 designs are part of the base

RE: button without aform

2008-11-14 Thread Stefan Lindner
Use a link and make it look like a button with css. Or use a . -Ursprüngliche Nachricht- Von: miro [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 14. November 2008 16:27 An: users@wicket.apache.org Betreff: button without aform Can I have buttons without a form ? I want to send user to a

RE: Unable to load Wicket app in hosting provider

2008-11-16 Thread Stefan Lindner
I guess that 'mailto:[EMAIL PROTECTED] Gesendet: Sonntag, 16. November 2008 16:36 An: users@wicket.apache.org Betreff: Unable to load Wicket app in hosting provider Hi, I'm running into an issue where my Wicket-based application will absolutely not load in the shared hosting environment. I'm t

RE: Unable to load Wicket app in hosting provider

2008-11-16 Thread Stefan Lindner
n configure? Thanks. -los Stefan Lindner wrote: > > I guess that ' servlet version 2.4". But Tomcat 5.0 supports only version 2.3? Mybe this > could help you. Or you just drop the 'version ="..."' attribute. > > Stefan > > -Ursprüngliche

AW: Simple GET based stateless form

2008-11-17 Thread Stefan Lindner
In the onSubmit method of your form place something like PageParameters p = new PageParameters(); // add your search parameters here getRequestCycle().setRequestTarget(new RedirectRequestTarget(urlFor(MySearchResults.class, p).toString())); Try out http://www.ai-online.i

RE: Stability of Wicket 1.4RC1 methods/interfaces: new development on 1.3.5 or 1.4RC1?

2008-11-23 Thread Stefan Lindner
I just can tell you our experience as wicket users. We recently moved a production system from wicket 2.0 (was an alpha version or so) to 1.4RC1. This system is now in production again. It runs as stable as the old one. We developed two applications with 1.4RC1 (going through M1 to M3) which are

ModalWindow and page serialization in 1.4RC1

2008-11-25 Thread Stefan Lindner
I have a ModalWindow with a page inside it (constructed via modalWindow.setPageCreator). The page contains a lot of AjaxButtons etc. If the content page is constructed as a stateless page (new MyPage() without parameters) the page (content of modal window) gets Serialized on every klick onto any A

RE: ModalWindow and page serialization in 1.4RC1

2008-11-25 Thread Stefan Lindner
reff: Re: ModalWindow and page serialization in 1.4RC1 Does your page inside modal window contain reference to outer page? -Matej On Tue, Nov 25, 2008 at 1:43 PM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > I have a ModalWindow with a page inside it (constructed via > modalWindow.s

RE: ModalWindow and page serialization in 1.4RC1

2008-11-25 Thread Stefan Lindner
@wicket.apache.org Betreff: Re: ModalWindow and page serialization in 1.4RC1 On Tue, Nov 25, 2008 at 6:37 PM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > No, it does not contain any references to the outer page. I had a similar > case last week, so that this was the first ascpect to investig

AW: ModalWindow and page serialization in 1.4RC1

2008-11-25 Thread Stefan Lindner
instead of anonymous make it a private static inner class -igor On Tue, Nov 25, 2008 at 9:48 AM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > Arghhh! Ok, so the Page object itself holds a reference to the parent class. > But is there any way to suppress the serialization of this p

IOptionRenderer vs IChioceRenderer in Wicket 1.4M1

2008-12-12 Thread Stefan Lindner
The definition of IOptionRenderer is Interface IOptionRenderer java.lang.String getDisplayValue(java.lang.Object object) the definition of IChoiceRenderer is Interface IChoiceRenderer java.lang.Object getDisplayValue(T object) Why is the param

RE: [OT] wicket users around the world

2008-12-15 Thread Stefan Lindner
Erlangen, Germany We are using Wicket Since version 1.0 for all new web projects. Stefan -Ursprüngliche Nachricht- Von: Jeremy Levy [mailto:jel...@gmail.com] Gesendet: Montag, 15. Dezember 2008 23:51 An: users@wicket.apache.org Betreff: Re: [OT] wicket users around the world New York,

RE: Applying Styles Through Java

2008-12-23 Thread Stefan Lindner
It depends :-) You may control the attributes of an element (e.g. attribute "class") with Component.add(new simpleAttributeModifier("class", " someComponentClass"); Stefan -Ursprüngliche Nachricht- Von: walnutmon [mailto:justin.m.boy...@gmail.com] Gesendet: Dienstag, 23. Dezem

RE: ModalWindow with DatePicker

2009-01-14 Thread Stefan Lindner
What's the problem? Which wicket version? We use the date picker in Wicket 1.4 trunk inside modal windows and it works fine. Stefan -Ursprüngliche Nachricht- Von: wilson meier [mailto:wilson.me...@googlemail.com] Gesendet: Mittwoch, 14. Januar 2009 16:47 An: users@wicket.apache.org Betr

[OT] German wicket programmers wanted

2009-01-29 Thread Stefan Lindner
We are looking for Wicket programmers with native German language for a project in Health Care. If anybody on this list knows about persons with free development capacity please mail to Stefan Lindner lind...@visionet.de

RE: new bee jqery or dojo

2009-02-02 Thread Stefan Lindner
In my experience jquery is more rubust and the interference with other javascript frameworks is no problem. Scriptacolous for example modifys the javascript basic behavior and tends to cause problems for other frameworks. -Ursprüngliche Nachricht- Von: miro [mailto:miroconn...@yahoo.com]

RE: How to personalise HTML content with Wicket ?

2009-02-02 Thread Stefan Lindner
Several Ways to to this. The easiest way for your example HTML: In Java Model contentModel = new Modelmailto:cmoulli...@gmail.com] Gesendet: Montag, 2. Februar 2009 11:10 An: users@wicket.apache.org Betreff: How to personalise HTML content with Wicket ? Hi, I would like to know how we can p

AW: How to personalise HTML content with Wicket ?

2009-02-02 Thread Stefan Lindner
ld be much more clear and consistent with wicket way of doing things... Best Ernesto On Mon, Feb 2, 2009 at 11:47 AM, Stefan Lindner wrote: > Yes, you just have to tell the e.g. Label component not to escapte the > model's content (label.setExcapteModelStrings(false)) Then the model&

AW: How to personalise HTML content with Wicket ?

2009-02-02 Thread Stefan Lindner
HTML by hand... Then what would be the point in using Wicket? And in this particular case I personally would prefer to use panels... Best, Ernesto On Mon, Feb 2, 2009 at 12:18 PM, Stefan Lindner wrote: > Of course! And: why not use wicket's Loop for generating each and > nested Loop f

RE: How to personalise HTML content with Wicket ?

2009-02-02 Thread Stefan Lindner
ow to personalise HTML content with Wicket ? Thks. Can I also use Model to define HTML section containing regular HTML with wicket id ? Additional question : in this case, where content is define dynamically, which java class will trigger the wicket tags ? Stefan Lindner wrote: >

AW: Problem with Wicket Ajax with IE7 64bits

2009-02-03 Thread Stefan Lindner
Hi Antoine, we use Vista64 for development and IE 7 64 for testing. We have pages with some dozen components (buttons, labels, optionfields) that are updated simulaniously but we never had a problem with IE7 like you described. But I must say we use Wicker 1.4 current runk, not 1.3.x. Stefan

RE: java.lang.ClassCastException in ListMultipleChoice

2009-02-05 Thread Stefan Lindner
And a little bit of example's code too. -Ursprüngliche Nachricht- Von: tomlist0...@gmail.com [mailto:tomlist0...@gmail.com] Im Auftrag von Thomas Mäder Gesendet: Donnerstag, 5. Februar 2009 23:38 An: users@wicket.apache.org Betreff: Re: java.lang.ClassCastException in ListMultipleChoice

RE: URL Mapping (Beginner)

2009-02-09 Thread Stefan Lindner
You need to do 2 things. 1. Mount your Page in Applicatioin.init() methode like mountBookmarkablePage("/Login", Login.class); As you see, you can give your page any name you want 2. Your e.g. Login.class must have a parameterless constructor or a constructor like public Login(fin

RE: Why is BookmarkablePageLink generified?

2009-03-02 Thread Stefan Lindner
Yes Willis, that's what we do. So we prefer to have a generic BuukmarkablePageLink. -Ursprüngliche Nachricht- Von: Willis Blackburn [mailto:wbo...@panix.com] Gesendet: Montag, 2. März 2009 13:43 An: users@wicket.apache.org Betreff: Re: Why is BookmarkablePageLink generified? Bookmarkabl

Wicket pages as plugin

2009-03-03 Thread Stefan Lindner
Dear wicket users and wizzards! Is ist possible to use wicket to implement "partial" pages that can be embedded into another page? E.g. to have a normal content management system like Joomla and use wicket top lug it into exisiting pages for some dynamic, database driven content? The HTML that is

Suppress page serialization

2011-12-14 Thread Stefan Lindner
Given is a Page 0 with an object. The object has a given value X; On the Page 0 resides an AjaxLink that opens a new Page 1 in a Wicket ModalWindow. The Content is a Page, not a Panel. Page 1 knows the object, the object is a parameter in page constructor. Modifying object to Y and closing page

RE: Suppress page versioning [was: Suppress page serialization]

2011-12-14 Thread Stefan Lindner
es it makes sense to move this object to the session? Make sure you make your page instance manager touching each affected page after to change the object. e.g. Session.get().touch(affectedPage); Pedro Henrique Oliveira dos Santos 2011/12/14 Stefan Lindner > Given is a Page 0 with an object.

AW: adjust my web application for smartphone like iPhone

2011-12-26 Thread Stefan Lindner
This is a css case. Just query the web for "css media query" and you will find lots of examples for resolution dependant css styling. -Ursprüngliche Nachricht- Von: mili [mailto:mili...@yahoo.de] Gesendet: Montag, 26. Dezember 2011 17:33 An: users@wicket.apache.org Betreff: adjust my web

RE: Wicket Bench

2010-04-29 Thread Stefan Lindner
Stump does not build with maven. Stump provides no downloadable plugin at this time. I was in contact with the programmer and he told me that he has not much time to support it but he wants to provide a first version "in the next few weeks". there is another litte plugin "qwickie" hat has curre

RE: Wicket Bench

2010-04-29 Thread Stefan Lindner
Stump does not build with maven. Stump provides no downloadable plugin at this time. I was in contact with the programmer and he told me that he has not much time to support it but he wants to provide a first version "in the next few weeks". there is another litte plugin "qwickie" hat has curre

RE: WicketStuff jWicket - Where is it?

2010-05-10 Thread Stefan Lindner
Yes! It is. It's based upon jQuery 1.4.2 and jQuery-ui 1.8.0. Version 1.8.1 of jQuery-ui is now available. If this new version is required I could integrate it next weekend. Let me know. Stefan -Ursprüngliche Nachricht- Von: Charles Deal [mailto:chuckdea...@gmail.com] Gesendet: Montag,

doctype and markup inheritance

2010-05-10 Thread Stefan Lindner
Dear Wicket wizzards, given is a page A with a HTML file that has no doctype, just starting with ... The Page's class is extended by B and the markup of B has a proper HTML file with XML and doctype lines. What is the intended behavior of wicket? 1. Ignore the exdending B's xml and doctype an

RE: doctype and markup inheritance

2010-05-10 Thread Stefan Lindner
Yes, but both are missing in HTML A. -Ursprüngliche Nachricht- Von: Sven Meier [mailto:s...@meiers.net] Gesendet: Di 11.05.2010 08:52 An: users@wicket.apache.org Betreff: Re: doctype and markup inheritance #setStripXmlDeclarationFromOutput() has nothing to do with doctype - it controls

: WicketStuff jWicket - Where is it?

2010-05-11 Thread Stefan Lindner
2.2.2 jdk15 On Mon, May 10, 2010 at 12:16 PM, Stefan Lindner wrote: > Yes! It is. It's based upon jQuery 1.4.2 and jQuery-ui 1.8.0. > Version 1.8.1 of jQuery-ui is now available. If this new version is > required I could integrate it nex

Does anybody use AjaxLazyLoadPanelTester

2010-05-11 Thread Stefan Lindner
Does anybody use AjaxLazyLoadPanelTester with success? We have to start a new request cycle manually before calling executeAjaxLazyLoadPanel. Stefan

AW: : WicketStuff jWicket - Where is it?

2010-05-11 Thread Stefan Lindner
ve the fact that the code must generate the options object for the jQuery behaviors. On Tue, May 11, 2010 at 7:51 AM, Stefan Lindner wrote: > Are you sure you are talking about jwicket? Where dou you see any JSON > stuff in jwicket? > > > -Ursprüngliche Nachricht- >

AW: Remove busy indicator from ajax timer behavior?

2010-05-12 Thread Stefan Lindner
I don't use it but i suggest something like and use div.hideBusy { display:none; } in css. Just theoretically, not tested Stefan -Ursprüngliche Nachricht- Von: Early Morning [mailto:goodmorning...@gmail.com] Gesendet: Mi 12.05.2010 09:44 An: users@wicket.apache.org Betref

jWicket 0.5.10

2010-05-16 Thread Stefan Lindner
jWicket 0.5.10 is now available at wicketstuff: https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/jwicket-parent Upgraded jQuery-ui to version 1.8.1 Stefan

AW: jWicket 0.5.10

2010-05-17 Thread Stefan Lindner
010 at 12:53 PM, Stefan Lindner wrote: > jWicket 0.5.10 is now available at wicketstuff: > https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/jwicket-parent > > Upgraded jQuery-ui

AW: drag and drop

2010-05-19 Thread Stefan Lindner
Perhaps you could try jWicket from wicketstuff http://www.wicketstuff.org/ (site is down at the moment). You could check aout the source from http://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/jwicket-parent and build the project with "maven install" Stefan --

AW: drag and drop

2010-05-19 Thread Stefan Lindner
Ernesto Reinaldo wrote >2-jQuery D&D is also broken for IE after AJAX replacements (Stefan >Lindner will surely confirm this). You can find this explained in >others threads on this list and on jQuery forum. It seems the same >issue has been reported over and over and they do

AW: Wicket Panel tag

2010-05-21 Thread Stefan Lindner
Yes, ist is! Use a WebMarkupcontainer. It will leave your content untouches (except the ID) Stefan Von: Brian Mulholland [mailto:blmulholl...@gmail.com] Gesendet: Fr 21.05.2010 20:10 An: users@wicket.apache.org Betreff: Re: Wicket Panel tag Cool, those both

RE: [announce] wicketstuff-core 1.4.7 released

2010-05-24 Thread Stefan Lindner
Great, Michael! Thank you! Stefan Von: Michael O'Cleirigh [mailto:michael.ocleir...@rivulet.ca] Gesendet: Mo 24.05.2010 17:48 An: users@wicket.apache.org Betreff: [announce] wicketstuff-core 1.4.7 released Hello, Based on the positive reception for a 1.4.7 w

RE: drag and drop

2010-05-26 Thread Stefan Lindner
I think this is a general Wicket problem. You have component A originally attached to Container C1 an then call Container C2.add(A). This means you want to remove Component A from Parent C1 and add it to Parent C2? Is this what you are doing? Stefan -Ursprüngliche Nachricht- Von: DerBe

RE: Very interesting question... my boss complain about one of my implementations...

2010-05-27 Thread Stefan Lindner
And the simplest solution, if it is a simple database action, would be to use a cron job if your database runsund some **ux operating system. Stefan - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional com

How to get PageClass form mounted bookmarkable page

2010-06-01 Thread Stefan Lindner
I have some pages mounted with moutBookmarkablePage("/somePath", MyPage.class) in Application.init. Now I have the path "/somePath" from webRequest. How can I retriev the matching MyPage.class for the path "/somePath"? Stefan

RE: drag and drop

2010-06-04 Thread Stefan Lindner
Could you provide a small testcase? I'm using d&d very intensive in a calendar app and never had any problems with this. Stefan -Ursprüngliche Nachricht- Von: DerBernd [mailto:beha...@web.de] Gesendet: Freitag, 4. Juni 2010 11:06 An: users@wicket.apache.org Betreff: Re: drag and drop

RE: drag and drop

2010-06-04 Thread Stefan Lindner
The default value for both is false! The code: private boolean onDragStartNotificationWanted = false; /** * If set to {...@code true}, the callback-Method {...@link #onDragStart(AjaxRequestTarget,SpecialKeys)} * is called when the drag operation starts.

AW: drag and drop

2010-06-04 Thread Stefan Lindner
Look into the original jQuery docs for draggable and set any options that are not implementet now with setRawOptions("handle: 'h2'"); This should do the trick. If you have any suggestion for implementing a setHandle(???) method that doesn't simple have a String paramete

RE: drag and drop

2010-06-04 Thread Stefan Lindner
This is a general Ajax problem. The ajax calls fired by the jQuery handlers dragStart/drag/dragEnd are not sychronized with each other. So it may happen that the onDrop event of the droppable is fired BEFORE the dragEnd. In the onDrop method you replace the dragged component wit a new one (redraw

RE: jWicket Drag'n'Drop

2010-06-06 Thread Stefan Lindner
Hallo, what exactly do you mean with "cloned"? Stefan -Ursprüngliche Nachricht- Von: Sebastian Gabriel [mailto:sebastian.gabr...@hs-augsburg.de] Gesendet: Sonntag, 6. Juni 2010 13:49 An: users@wicket.apache.org Betreff: jWicket Drag'n'Drop Hello, I am trying to build a drag and drop co

AW: jWicket Drag'n'Drop

2010-06-06 Thread Stefan Lindner
: jWicket Drag'n'Drop Well, in the onDrop() method of the listcontainer the droppedelement is added to the list. At this point I want the element which was dropped to disappear. Because if not the element is displayed twice. Thanks Am 06.06.2010 um 17:23 schrieb Stefan Lindner

AW: drag and drop

2010-06-09 Thread Stefan Lindner
.iterator() Stefan -Ursprüngliche Nachricht- Von: DerBernd [mailto:beha...@web.de] Gesendet: Mittwoch, 9. Juni 2010 09:44 An: users@wicket.apache.org Betreff: Re: drag and drop Hi, little question at this point. How do I get the child-components of an RepeatingView. Isn't there any kin

RE: jWicket SortableList

2010-06-10 Thread Stefan Lindner
jWicket (and jQuery too) does not know anything about other elements when you drop one element onto another. The droppable element itself must know ist's position within your list. So if you render your list, you must keep track of the relative position in your rendered elements. I don't know o

jQuery Accordion implementation

2010-06-10 Thread Stefan Lindner
I'm starting to implement jQuery's Accordion for jWicket now. Any suggestions/wishes? Stefan - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

jWicket, D&D + sort

2010-06-11 Thread Stefan Lindner
To all users with questions about position and sorting problems: I'm implementing jQuery Sortable because jQuery Accordion has an option 'sortable'. This will look like this class MyClass implements ISortable { ... onSorted(final int newPosition) { .

jWicket: Accordion and Sortable

2010-06-12 Thread Stefan Lindner
I've comitted a first quick and dirty implementation of jQuery's Accordion and Sortable. Still no documentation and no example, but works for must cases. API will change a litte bit in next version. Accordion and Sortable take List as constructor parameter now. This will be a Model> in the next ver

jWicket Accordiion and Sortable

2010-06-13 Thread Stefan Lindner
I've committed version 0.6.0 of jWicket to wicketstuff's trunk. It provides a first implementation of Accordion and Sortable. Both do not have a complete documentation now (take a look at Abstractaccordion for some hints). I will now start to use both in my own projects. The API my change a little

RE: AW: drag and drop

2010-06-17 Thread Stefan Lindner
This is a question for jQuery-UI mailing lists. It's independent from the jWicket implementation. -Ursprüngliche Nachricht- Von: DerBernd [mailto:beha...@web.de] Gesendet: Donnerstag, 17. Juni 2010 11:35 An: users@wicket.apache.org Betreff: Re: AW: drag and drop Hi, I've got a problem

RE: AJAX Button does not submit form if RequiredTextField is empty

2010-06-18 Thread Stefan Lindner
http://wicket.apache.org/docs/1.4/org/apache/wicket/markup/html/form/Form.html -Ursprüngliche Nachricht- Von: vov [mailto:vov...@mail.ru] Gesendet: Freitag, 18. Juni 2010 12:11 An: users@wicket.apache.org Betreff: AJAX Button does not submit form if RequiredTextField is empty Form

RE: Jwicket and Wiquery

2010-06-28 Thread Stefan Lindner
There is no tutorial for jWicket yet. Take a look at the javadocs or look into the source code of the demo application. And: If you are convinced that wiquery fulfills your requierements then take wiquery. Stefan -Ursprüngliche Nachricht- Von: Josh Kamau [mailto:joshnet2...@gmail.com]

AW: Jwicket and Wiquery

2010-06-28 Thread Stefan Lindner
n 28, 2010 at 5:15 PM, Stefan Lindner wrote: > There is no tutorial for jWicket yet. Take a look at the javadocs or look > into the source code of the demo application. > And: If you are convinced that wiquery fulfills your requierements then > take wiquery. > > Stefan > >

RE: Jwicket and Wiquery

2010-06-28 Thread Stefan Lindner
out the demo . Thanks again. On Mon, Jun 28, 2010 at 5:15 PM, Stefan Lindner wrote: > There is no tutorial for jWicket yet. Take a look at the javadocs or look > into the source code of the demo application. > And: If you are convinced that wiquery fulfills your requierements then >

RE: open Modal Window without AjaxRequestTarget

2010-06-30 Thread Stefan Lindner
See ModalWindow.getWindowOpenJavascript() and use it like this ModalWindow myModalWindow = new ModalWIndow.. someComponent.add(new SimpleAttributeModifier("onclick", myModalWindow.getWindowOpenJavascript())); I didn't try I but I think it should work like this. Stefan --

RE: wicket in a mobile application.

2010-07-13 Thread Stefan Lindner
What do you mean with "mobile"? Search for "walmart" on this list. Then you will find some informations about walmart using Wicket for mobile devices. Stefan -Ursprüngliche Nachricht- Von: amit1400158 [mailto:ade...@qasource.com] Gesendet: Dienstag, 13. Juli 2010 13:22 An: users@wicket.

RE: How to pass context-param values to different WebPages ?

2010-07-14 Thread Stefan Lindner
Create a getMyName-method in Applicatoin class and call Application.get().getMyName() in your page class Stefan -Ursprüngliche Nachricht- Von: Madhan [mailto:madhan.sundarara...@tcs.com] Gesendet: Mittwoch, 14. Juli 2010 14:58 An: users@wicket.apache.org Betreff: How to pass context-par

RE: How to pass context-param values to different WebPages ?

2010-07-14 Thread Stefan Lindner
Your are new to Java too? Did you override the get() method in your IndexApplication? If not, IndexApplication.get results in an Applicationobject and not in an IndexApplication object. Either cast it in your opage oder create your own get methodn in IndexApplication. add( new Label( "userName

jWicket 0.6.1

2010-07-14 Thread Stefan Lindner
jWicket version 0.6.1 is now in wicketstuff's trunk. New Featuers: - ui-accordion - ui-sortable - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

DropDownChoice for opening a new Window

2010-07-29 Thread Stefan Lindner
Is it possible to have a DropDownChoice that responds to a new window when selected? What I mean is new DropDownChoice(...) { protected void onSelectionChanged(Integer newSelection) { // Send response to a new open window as if clicket to a Link with

<    1   2   3   4   >