You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by james yong <i_...@yahoo.com.sg> on 2010/08/18 05:07:56 UTC

dialog

Hi,

Is there any suggestion on creating a dialog?

I have look at the following:
1. wiquery has little documentation on creating dialog, and no source codes
for the example war file.
2. visural-wicket isn't working for me at 1st try. Maybe due to some
javascript conflict with my existing scripts.
3. wicketstuff-dojo-1.1 is only for wicket 1.3...according to the site.
4. jwicket svn project at wicketstuff is empty!

Regards,
James


-- 
View this message in context: http://apache-wicket.1842946.n4.nabble.com/dialog-tp2329291p2329291.html
Sent from the Wicket - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: dialog

Posted by julien roche AKA indiana_jules <ro...@gmail.com>.
Hi,

For wiQuery, you can find the sources on the following link:
http://code.google.com/p/wiquery/source/browse/#svn/examples/wiquery-examples

To see dialogs examples:
http://code.google.com/p/wiquery/source/browse/#svn/examples/wiquery-examples/src/main/java/org/odlabs/wiquery/examples/dialog

Regards

Julien Roche

On Wed, Aug 18, 2010 at 5:23 AM, james yong <i_...@yahoo.com.sg> wrote:

>
> Hi Martin,
>
> Thanks for the link.
>
> Regards,
> James
>
>
> Martin Makundi wrote:
> >
> >
> http://wicketstuff.org/wicket14/nested/?wicket:bookmarkablePage=:org.apache.wicket.examples.ajax.builtin.modal.ModalWindowPage
> >
> > 2010/8/18 james yong <i_...@yahoo.com.sg>:
> >>
> >> Hi,
> >>
> >> Is there any suggestion on creating a dialog?
> >>
> >> I have look at the following:
> >> 1. wiquery has little documentation on creating dialog, and no source
> >> codes
> >> for the example war file.
> >> 2. visural-wicket isn't working for me at 1st try. Maybe due to some
> >> javascript conflict with my existing scripts.
> >> 3. wicketstuff-dojo-1.1 is only for wicket 1.3...according to the site.
> >> 4. jwicket svn project at wicketstuff is empty!
> >>
> >> Regards,
> >> James
> >>
> >
> >
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/dialog-tp2329291p2329301.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

Re: dialog

Posted by james yong <i_...@yahoo.com.sg>.
Hi Martin,

Thanks for the link.

Regards,
James


Martin Makundi wrote:
> 
> http://wicketstuff.org/wicket14/nested/?wicket:bookmarkablePage=:org.apache.wicket.examples.ajax.builtin.modal.ModalWindowPage
> 
> 2010/8/18 james yong <i_...@yahoo.com.sg>:
>>
>> Hi,
>>
>> Is there any suggestion on creating a dialog?
>>
>> I have look at the following:
>> 1. wiquery has little documentation on creating dialog, and no source
>> codes
>> for the example war file.
>> 2. visural-wicket isn't working for me at 1st try. Maybe due to some
>> javascript conflict with my existing scripts.
>> 3. wicketstuff-dojo-1.1 is only for wicket 1.3...according to the site.
>> 4. jwicket svn project at wicketstuff is empty!
>>
>> Regards,
>> James
>>
> 
> 

-- 
View this message in context: http://apache-wicket.1842946.n4.nabble.com/dialog-tp2329291p2329301.html
Sent from the Wicket - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: dialog

Posted by Martin Makundi <ma...@koodaripalvelut.com>.
http://wicketstuff.org/wicket14/nested/?wicket:bookmarkablePage=:org.apache.wicket.examples.ajax.builtin.modal.ModalWindowPage

2010/8/18 james yong <i_...@yahoo.com.sg>:
>
> Hi,
>
> Is there any suggestion on creating a dialog?
>
> I have look at the following:
> 1. wiquery has little documentation on creating dialog, and no source codes
> for the example war file.
> 2. visural-wicket isn't working for me at 1st try. Maybe due to some
> javascript conflict with my existing scripts.
> 3. wicketstuff-dojo-1.1 is only for wicket 1.3...according to the site.
> 4. jwicket svn project at wicketstuff is empty!
>
> Regards,
> James
>
>
> --
> View this message in context: http://apache-wicket.1842946.n4.nabble.com/dialog-tp2329291p2329291.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: Page expired with Panel Replacement without Cookie Support

Posted by bh...@actrix.gen.nz.
Hi,

I filed a testcase here:
https://issues.apache.org/jira/browse/WICKET-3000

Bernard

On Wed, 18 Aug 2010 20:47:22 +1200, you wrote:

>Hi,
>
>I switched off cookie suport in FireFox 3.6.3 to test whether an
>application still works via URL rewriting:
>
>In FireFox Tools|Option|Privacy|History|FireFox will:Use Custom
>Settings for History|Uncheck "Accept Cookies from Sites"
>
>Then with the most basic panel replacement (no AJAX), I always get
>page expired errors.
>
>Works fine with cookie support.
>
>public class Panel1 extends Panel{
>
>    public Panel1(String id) {
>        super(id);
>        add(new Link("switch") {
>            @Override
>            public void onClick() {
>                Panel1.this.replaceWith(new
>Panel2(Panel1.this.getId()));
>            }
>        });
>    }
>}
>
>What am I missing?
>
>Many thanks,
>
>Bernard
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
>For additional commands, e-mail: users-help@wicket.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Page expired with Panel Replacement without Cookie Support

Posted by bh...@actrix.gen.nz.
Hi,

I switched off cookie suport in FireFox 3.6.3 to test whether an
application still works via URL rewriting:

In FireFox Tools|Option|Privacy|History|FireFox will:Use Custom
Settings for History|Uncheck "Accept Cookies from Sites"

Then with the most basic panel replacement (no AJAX), I always get
page expired errors.

Works fine with cookie support.

public class Panel1 extends Panel{

    public Panel1(String id) {
        super(id);
        add(new Link("switch") {
            @Override
            public void onClick() {
                Panel1.this.replaceWith(new
Panel2(Panel1.this.getId()));
            }
        });
    }
}

What am I missing?

Many thanks,

Bernard

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org