Re: integrating extjs with wicket

2008-04-21 Thread Advanced Technology®
Hi Paulo,
Did you have sucess integrating Ext.form.FormPanel ???
Can you upload  Wicket-Extjs integration Test App ?


AT

2008/1/9, Paolo Di Tommaso <[EMAIL PROTECTED]>:
>
> This is really an interesting topic!
>
> I've made some Wicket-Extjs integration tests and I haven't found any
> particular issues to make them work smoothly together.
>
> Extjs UI widgets can be created dynamically or can be attach to existing
> HTML elements using the element IDs.
>
> Following the latter approach is quite easy integrate Extjs with Wicket.
>
> The simplest way I've tried is using a behavior to 'attach' an Extjs
> widget
> to Wicket component.
>
> For example:
>
> public class ExtDateFieldBehavior extends ExtAbstractBehavior{
>
> @Override
> String getExtjsClassName() {
> return "Ext.form.DateField";
> }
>
> }
>
> public abstract class ExtAbstractBehavior extends AbstractBehavior {
>
>
> /**
>  * Used to add all common Extjs required JavaScript and CSS resources
>  */
> @Override
> public void bind(Component component) {
> if( component == null ) throw new
> IllegalArgumentException("Argument
> cannot be null");
> component.setOutputMarkupId(true);
> component.add(HeaderContributor.forCss( Extjs.Css.EXT_ALL ));
> component.add(HeaderContributor.forJavaScript( Extjs.Js.EXT_BASE
> ));
> component.add(HeaderContributor.forJavaScript(
> Extjs.Js.EXT_ALL_DEBUG ));
> }
>
>
> abstract String getExtjsClassName();
>
> abstract String getOptions();
>
> @Override
> public void onRendered( Component component ) {
> /* create a copy of options */
> Config options = new Config( config );
> /* initialization */
> config(component,options);
> /* get the string version */
> String sConfig = Extjs.serialize(options);
>
> String extjs = "new " + getExtjsClassName() + "(" + getOptions() +
> ");";
> //TODO log here
>
> Response r = component.getResponse();
> r.write( JavascriptUtils.SCRIPT_OPEN_TAG );
> r.write( extjs );
> r.write( JavascriptUtils.SCRIPT_CLOSE_TAG );
> }
> }
>
>
> That's all!
>
> Obviously this is just a simple test but it works and can be extended
> easily
> for other widgets.
>
>
> What I've found not trivial is to pass/define the Extjs widget
> property/configuration in a easy/elegant way.
>
> Would be interesting discuss this...
>
>
> -- Paolo
>
>
>
>
>
> On Jan 9, 2008 6:25 PM, Jeremy Fergason <[EMAIL PROTECTED]> wrote:
>
> > wicket seems to provide some nice management classes like TextField,
> that
> > do
> > things like set the value for you, I don't see how to integrate this
> with
> > a
> > javascript solution like ExtJs which does not use an  > ...
> > tag.  It could be something very simple and I am just missing it, if so
> > please point me in the right direction.
> >
> > Thanks!
> >
> > On Jan 9, 2008 10:19 AM, Martijn Dashorst <[EMAIL PROTECTED]>
> > wrote:
> >
> > > What is keeping you from building it?
> > >
> > > Martijn
> > >
> > > On Jan 9, 2008 6:15 PM, Reinout van Schouwen <[EMAIL PROTECTED]>
> wrote:
> > > >
> > > > Op woensdag 09-01-2008 om 09:07 uur [tijdzone -0700], schreef Jeremy
> > > > Fergason:
> > > >
> > > > > I'm just starting out with wicket and I would like to use a
> > > client-side
> > > > > javascript library--ExtJs, to enhance the end user experience.
> > > >
> > > > +1
> > > >
> > > > At my company we use Ext2 and are very enthousiastic about it.
> > > > I want to move us from Struts to Wicket but lack of support for Ext2
> > > > would be a roadblock...
> > > >
> > > > --
> > > > Reinout van Schouwen
> > > >
> > > >
> > > >
> > > >
> > > >
> -
> > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > >
> > > >
> > >
> > >
> > >
> > > --
> > > Buy Wicket in Action: http://manning.com/dashorst
> > > Apache Wicket 1.3.0 is released
> > > Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.0
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
>



-- 
AT(R)


Re: users, please give us your opinion: what is your take on generics with Wicket

2008-06-01 Thread Advanced Technology®
1)   [ X] Can best be done like currently in the 1.4 branch, where models
and components are both generified. I care most about the improved
static type checking generified models and components give Wicket.

2)   [ X] I might rethink upgrading if my choice doesn't win.



AT


Re: Wicket + Spring 2.5

2007-12-15 Thread Advanced Technology®
Take a look of appfuse light 1.8.1, there is a Wicket 1.3 + Spring
2.5combination.
https://appfuse-light.dev.java.net/


Good Luck
AT

2007/12/15, Korbinian Bachl <[EMAIL PROTECTED]>:
>
> Hi,
>
> im currently using ANT + IDE (EAR having EJBapp + WEBapp) to get my
> wicket apps started, but somehow I looked at the new spring 2.5 and it
> seems interesting to me (same possibilities but no big appserver
> needed)... can anyone post a example app or structure to me where I can
> see how to plug wicket + spring 2.5 together? (or a Maven2 Archetype for
> it?)
>
> I mean, where do you stere there? first a spring 2.5 App and then put
> wicket in? or wicket first and then spring in?... sorry for the noobish
> question but I never used spring before.
>
> Best,
>
> Korbinian
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
AT(R)


AjaxCheckBox not receiving onUpdate Event

2007-12-18 Thread Advanced Technology®
Hi,
I have this code :
final AjaxCheckBox bbcaucao = new AjaxCheckBox("bbcaucao") {
protected void onUpdate(AjaxRequestTarget target) {
System.out.println(new Date());
}
};

The Date gets printed only if the checkbox is  unchecked.

Could someone give me some light.

Thanks in Advance.
AT(R)


Re: AjaxCheckBox not receiving onUpdate Event

2007-12-19 Thread Advanced Technology®
Thanks Stefan, But the error persist , still not notifing when Checkbox is
unchecked.


AT


2007/12/19, Stefan Lindner <[EMAIL PROTECTED]>:
>
> Override a methode calles something like "wantChangeNotificatoin" and meke
> it return true
>
> Stefan
>
> -Ursprüngliche Nachricht-
> Von: Advanced Technology(R) [mailto:[EMAIL PROTECTED]
> Gesendet: Mittwoch, 19. Dezember 2007 08:32
> An: users@wicket.apache.org
> Betreff: AjaxCheckBox not receiving onUpdate Event
>
> Hi,
> I have this code :
> final AjaxCheckBox bbcaucao = new AjaxCheckBox("bbcaucao") {
> protected void onUpdate(AjaxRequestTarget target) {
> System.out.println(new Date());
> }
> };
>
> The Date gets printed only if the checkbox is  unchecked.
>
> Could someone give me some light.
>
> Thanks in Advance.
> AT(R)
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
AT(R)


AjaxEditableLabel not saving

2007-12-19 Thread Advanced Technology®
Hi,

I am this exception when editing an AjaxEditableLabel :

java.lang.IllegalAccessError: tried to access method
org.apache.wicket.Component.onModelChanging()V from class
org.apache.wicket.extensions.ajax.markup.html.AjaxEditableLabel$1
at
org.apache.wicket.extensions.ajax.markup.html.AjaxEditableLabel$1.onModelChanging
(AjaxEditableLabel.java:273)
at org.apache.wicket.Component.modelChanging(Component.java:2058)
at org.apache.wicket.Component.setModelObject(Component.java:2823)
at org.apache.wicket.markup.html.form.FormComponent.updateModel(
FormComponent.java:992)
at org.apache.wicket.markup.html.form.FormComponent.processInput(
FormComponent.java:874)
at
org.apache.wicket.extensions.ajax.markup.html.AjaxEditableLabel$EditorAjaxBehavior.respond
(AjaxEditableLabel.java:121)
at org.apache.wicket.ajax.AbstractDefaultAjaxBehavior.onRequest(
AbstractDefaultAjaxBehavior.java:285)
at
org.apache.wicket.request.target.component.listener.BehaviorRequestTarget.processEvents
(BehaviorRequestTarget.java:100)
at org.apache.wicket.request.AbstractRequestCycleProcessor.processEvents
(AbstractRequestCycleProcessor.java:90)
at org.apache.wicket.RequestCycle.processEventsAndRespond(
RequestCycle.java:1094)
at org.apache.wicket.RequestCycle.step(RequestCycle.java:1169)
at org.apache.wicket.RequestCycle.steps(RequestCycle.java:1248)
at org.apache.wicket.RequestCycle.request(RequestCycle.java:489)
at org.apache.wicket.protocol.http.WicketFilter.doGet(WicketFilter.java
:354)
at org.apache.wicket.protocol.http.WicketFilter.doFilter(
WicketFilter.java:194)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(
ServletHandler.java:1084)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java
:360)
at org.mortbay.jetty.security.SecurityHandler.handle(
SecurityHandler.java:216)
at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java
:181)
at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java
:722)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:404)
at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java
:139)
at org.mortbay.jetty.Server.handle(Server.java:324)
at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java
:505)
at org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(
HttpConnection.java:828)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:514)
at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:211)
at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:380)
at org.mortbay.io.nio.SelectChannelEndPoint.run(
SelectChannelEndPoint.java:395)
at org.mortbay.thread.BoundedThreadPool$PoolThread.run(
BoundedThreadPool.java:450)
-- 
AT(R)


Re: AjaxEditableLabel not saving

2007-12-20 Thread Advanced Technology®
I 've downgrade to wicket-extensions 1.3.0-rc1, and it's working.

AT

2007/12/20, TahitianGabriel <[EMAIL PROTECTED]>:
>
>
> I have the same problem with wicket RC2 and tomcat 6.
> Where can I find RC3 to try it as it has not been release yet?
>
> Also when I enter accented characters in the editable label (like 'é',
> 'è',
> 'à', ...) they are turn into stange unreadable characters (I've tried with
> both rc1 ans rc2)... Any Idea?
>
>
>
>
> igor.vaynberg wrote:
> >
> > and what about rc3?
> >
> > -igor
> >
> >
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/AjaxEditableLabel-not-saving-tp14413223p14442238.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


Re: AjaxEditableLabel not saving

2007-12-21 Thread Advanced Technology®
Try to change Content-Type of Page to "text/html; charset=iso-8859-1".



2007/12/21, TahitianGabriel <[EMAIL PROTECTED]>:
>
>
> I've downgraded to RC1 also, but the accented characters are not handled
> correctly neither in RC1 or RC2...
>
> By the way I'm using Tomcat...
>
>
> Azarias Tomás wrote:
> >
> > I 've downgrade to wicket-extensions 1.3.0-rc1, and it's working.
> >
> > AT
> >
> > 2007/12/20, TahitianGabriel <[EMAIL PROTECTED]>:
> >>
> >>
> >> I have the same problem with wicket RC2 and tomcat 6.
> >> Where can I find RC3 to try it as it has not been release yet?
> >>
> >> Also when I enter accented characters in the editable label (like 'é',
> >> 'è',
> >> 'à', ...) they are turn into stange unreadable characters (I've tried
> >> with
> >> both rc1 ans rc2)... Any Idea?
> >>
> >>
> >>
> >>
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/AjaxEditableLabel-not-saving-tp14413223p14451264.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
AT(R)


Re: AjaxEditableLabel not saving

2007-12-22 Thread Advanced Technology®
Yes I do.
I am using Wicket 1.3.0rc2 with Wicket Extension 1.3.0rc1.


2007/12/22, TahitianGabriel <[EMAIL PROTECTED]>:
>
>
> I'm already using the iso-8859-1 in a meta tag in my html file.
> I have also try in the setHeader function and it's not working.
> Do you have a correct behavior with accented character?
>
>
>
>
> Azarias Tomás wrote:
> >
> > Try to change Content-Type of Page to "text/html; charset=iso-8859-1".
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/AjaxEditableLabel-not-saving-tp14413223p14467161.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
AT(R)


Re: the flow of wicket

2008-01-12 Thread Advanced Technology®
+1

On 1/12/08, Paolo Di Tommaso <[EMAIL PROTECTED]> wrote:
> I disagree with this answer.
>
> The fact that request handling stuff is not a public api, is A GOOD REASON
> because it should be documented better, not viceversa.
>
> And I really don't understand in which way this could prevent you to change
> - eventually - in future wicket versions.
>
> I not a newbie user and I'm really a Wicket enthusiastic user and pleased to
> be involved in its great community, but I have to admit that some topics are
> still obscure.
>
> The request flow handling is one of the most important topic to know in a
> web application framework, being so I think it would be very interesting to
> have only a brief description, for example a sequence diagram showing the
> components interaction starting from the WicketFilter (and/or the
> WicketServlet) involved in a web request handling.
>
> Hiding this stuff or, even worse, asking the users to debug the framework to
> understand what it should important to know I don't think is a good approach
> because it is precisely this that leads to wrong assumptions, that could
> break in future.
>
> Thank you,
>
> - Paolo
>
>
>
> On Jan 11, 2008 2:09 AM, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
>
> > you guys want to know about internal implementation details. it has no
> > publically exposed api, so why should you care? why should we document
> > something that can change without affecting our users? does the jee
> > spec detail how the request gets to the servlet? no, that is left up
> > to the implementor of the servlet container.
> >
> > you want to know about it?  set a break point in
> > wicketfilter.dofilter() and walk the code.
> >
> > -igor
> >
> >
> > On Jan 10, 2008 5:06 PM, Dan Kaplan <[EMAIL PROTECTED]> wrote:
> > > seconded
> > >
> > >
> > > -Original Message-
> > > From: Beyonder Unknown [mailto:[EMAIL PROTECTED]
> > > Sent: Thursday, January 10, 2008 5:05 PM
> > > To: WICKET USER
> > > Subject: the flow of wicket
> > >
> > >
> > > Hi All,
> > >
> > > I am studying wicket from the WicketFilter to the WebApplication, but I
> > > don't understand the concept of RequestCycleProcessor and how does it
> > get
> > > invoked.  I read the "Wicket In Action" and "Pro Wicket" but the
> > explanation
> > > is not that detailed. Does anybody know of a primer with regards to how
> > > Wicket process really works? I want to know the flow, from startup of
> > the
> > > servlet container, like what is being instantiated, and when  request is
> > > made.
> > >
> > > I can't seem to trace how RequestTarget being consumed by
> > > RequestCycleProcessor, from the page.
> > >
> > > Thank you very much!
> > >
> > > Best,
> > > Wen Tong
> > >
> > > --
> > > The only constant in life is change.
> > >
> > >
> > >
> > >
> > >
> > >
> >
> 
> > > 
> > > Be a better friend, newshound, and
> > > know-it-all with Yahoo! Mobile.  Try it now.
> > > http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
> > >
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>

-- 
Sent from Gmail for mobile | mobile.google.com

AT(R)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



FeedbackViewPanel with Pagination

2008-01-22 Thread Advanced Technology®
Hi,

I'am implementing an FeedbackViewPanel that's shows FeedBackMessages with
Pagination :

public class FeedbackViewPanel extends Panel implements IFeedback {
private static final int PAGE_SIZE = 20;

public FeedbackViewPanel(final String id) {
super(id);
final MessageListView messageListView = new
MessageListView("messages", new FeedbackMessagesModel(this));
messageListView.setVersioned(false);
add(messageListView);

final AjaxPagingNavigator navigator = new
AjaxPagingNavigator("navigator", messageListView) {
public boolean isVisible() {
return messageListView.getPageCount() > 1;
}
};
add(navigator);

}

private final class MessageListView extends PageableListView {

public MessageListView(String id, IModel model) {
super(id, model, PAGE_SIZE);
//setModel();
}

public boolean isVisible() {
final List messages = (List) getModelObject();
return !messages.isEmpty();
}

public void populateItem(ListItem item) {
final FeedbackMessage message = (FeedbackMessage)
item.getModelObject();
message.markRendered();

Label label = new Label("message", new PropertyModel(message,
"message"));
final Label m = new Label("icon");
item.add(m);
m.setModel(new Model(""));
m.setEscapeModelStrings(false);
m.setRenderBodyOnly(true);
item.add(label);
}
}
}

But I can figure out a way to delete all the messages from the Session as
they get listed on the FeedbackViewPanel .


AT


Re: Workaround for "AjaxEditableLabel yields java.lang.IllegalAccessError (WICKET-1239)"?

2008-01-30 Thread Advanced Technology®
Check Per solution :
http://www.nabble.com/AjaxEditableLabel-in-1.3.0-tp14675483p14687720.html

AT

2008/1/31, Edvin Syse <[EMAIL PROTECTED]>:
>
> Hi,
>
> I really need the AjaxEditableLabel in my application, but because of
> https://issues.apache.org/jira/browse/WICKET-1239, it seems useless at
> the time. (Just tested with Linux/Java 1.6_04/Wicket 1.3.1).
>
> Does anyone know of a workaround in the meantime?
>
> java.lang.IllegalAccessError: tried to access method
> org.apache.wicket.Component.onModelChanging()V from class
> org.apache.wicket.extensions.ajax.markup.html.AjaxEditableLabel$1
>
> -- Edvin
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
AT(R)


Re: [wicketstuff] Accordion component?

2008-02-06 Thread Advanced Technology®
+1

2008/2/6, Nino Saturnino Martinez Vazquez Wael <[EMAIL PROTECTED]>:
>
> I almost have a component ready for wicketstuff.. Should I spend the
> extra hour generalizing it and putting it up on wicketstuff?
>
> http://www.hedgerwow.com/360/mwd/accordion/demo.php
>
> --
> Nino Martinez Wael
> Java Specialist @ Jayway DK
> http://www.jayway.dk
> +45 2936 7684
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
AT(R)


Re: Dojo with Wicket 1.3 Templates

2007-09-22 Thread Advanced Technology®
Thanks for replay.

I meant using DojoDatePicker in a page that extends other page.
But I find the problem its was not related to page inheritance, it'was the
scriptaculous.js. And I remove it and is now working.


AT


2007/9/22, Vincent Demay <[EMAIL PROTECTED]>:
>
> Hi,
>
> Sorry for the late answer, You mean that the default template in
> DojoDatePicker makes it doesn't work?
>
> Cheers
>
> --
> Vincent
>
> Azarias Tomás a écrit :
> > Hi,
> > I am having problems with DojoDatePicker and Wicket Templates. When I
> remove
> > the template the DojoDatePicker , it 's Ok, otherwise it doesnt get
> shown.
> > Throwing this messages on the client :
> >
> > Could not load 'dojoWicket.widget.SimpleDropdownDatePicker'; last tried
> > '__package__.js'
> > [Break on this error] throw _13||Error(_12);
> >
> > Could someone give me pointers to solve this?
> >
> > AT
> >
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
AT(r)


Re: Apache Wicket 1.3.0-beta4 released!

2007-10-11 Thread Advanced Technology®
2007/10/11, Frank Bille <[EMAIL PROTECTED]>:
>
> This is the fourth beta for Apache Wicket we have prepared for your
> pleasure. It contains over 120 fixes to issues with previous releases and
> todo items we have cleared.
>
> In this announcement:
>
> * Apache Wicket
> * This release
> ** Portlet support
> * Migrating from 1.2
> * Downloading the release
> * Validating the release
> * Reporting bugs
>
> Eager people click here to download the distribution, others can read
> further:
>
> http://www.apache.org/dyn/closer.cgi/wicket/1.3.0-beta4/
>
> We thank you for your patience and support. Given the current list of
> remaining issues and the fact that we have just accepted portlet support
> back in, we think a fifth beta release is necessary. But that is no excuse
> for not giving this fourth installment a test drive!
>
> The Wicket Team
>
> -= Apache Wicket =-
>
> Apache Wicket is a component oriented Java web application framework
> currently undergoing incubation at the Apache Software foundation. With
> proper mark-up/logic separation, a POJO data model, and a refreshing lack
> of
> XML, Apache Wicket makes developing web-apps simple and enjoyable again.
> Swap the boilerplate, complex debugging and brittle code for powerful,
> reusable components written with plain Java and HTML.
>
> Our migration to a top level project is now completed and you can find our
> website and documentation here:
>
> http://wicket.apache.org
>
> -= This release =-
>
> This release is the fourth in a series of beta releases until we feel
> confident to finalize Wicket 1.3. This is called a beta because we don't
> have fixed all bugs, and probably haven't found them all either.
>
> -- Portlet support --
>
> A new feature in this beta4 release is the merge of Ate Douma's portlet
> branch into trunk. This reintroduces portlet support in Wicket.
>
> http://cwiki.apache.org/WICKET/portal-howto.html
>
> -= Migrating from 1.2 =-
>
> If you are coming from Wicket 1.2, you really want to read our migration
> guide, found on the wiki:
>
> http://cwiki.apache.org/WICKET/migrate-13.html
>
> -= Downloading the release =-
>
> You can download the release from the official Apache mirror system, and
> you
> can find it through the following link:
>
> http://www.apache.org/dyn/closer.cgi/wicket/1.3.0-beta4/
>
> For the Maven and Ivy fans out there: update your pom's to the following,
> and everything will be downloaded automatically:
>
> 
> org.apache.wicket
> wicket
> 1.3.0-beta4
> 
>
> Substitute the artifact ID with the projects of your liking to get the
> other
> projects.
>
> Please note that we don't prescribe a Logging implementation for SLF4J.
> You
> need to specify yourself which one you prefer. Read more about SLF4J here:
> http://slf4j.org
>
> -= Validating the release =-
>
> The release has been signed by Frank Bille, your release manager for
> today.
> The public key can be found in the KEYS file in the download area.
> Download
> the KEYS file only from the Apache website.
>
> http://www.apache.org/dist/wicket/1.3.0-beta4/KEYS
>
> Instructions on how to validate the release can be found here:
>
> http://www.apache.org/dev/release-signing.html#check-integrity
>
> -= Reporting bugs =-
>
> In case you do encounter a bug, we would appreciate a report in our JIRA:
>
> http://issues.apache.org/jira/browse/WICKET
>
> -= The distribution =-
>
> In the distribution you will find a README. The README contains
> instructions
> on how to build from source yourself and a list of all things that have
> been
> fixed, added and/or removed since the first beta release.
>
>
> -= Release Notes - Wicket - Version 1.3.0-beta4 =-
>
> ** Bug
> * [WICKET-349] - ListView can't undo changes to model
> * [WICKET-470] - AjaxFormComponentUpdatingBehavior won't work for
> RadioChoices
> * [WICKET-497] - For stateless mounted page incorrect url is generated
> * [WICKET-520] - Escape doesn't work for AjaxEditableLabel in Firefox
> * [WICKET-572] - replacing tr using ajax does not work in safari
> * [WICKET-611] - AbstractRequestTargetUrlCodingStrategy ignores query
> parameters if there is no parameter in the path
> * [WICKET-631] - Resource.getParameters() empty when resource is
> mounted
> * [WICKET-635] - FormTester Does Not Properly Handle DropDownChoice
> With
> Null Model
> * [WICKET-640] - modal window close button does not cancel the event
> after closing the window
> * [WICKET-685] - ReloadingWicketFilter not working with markup
> inheritance
> * [WICKET-705] - StringValue javadoc incorrect regrading conversion to
> checked exception
> * [WICKET-707] - Invoking a request listener on a page returns an
> Expired Error page
> * [WICKET-722] - IndicatingAjaxFallbackLink does not remove indicator
> if
> the link itself is added via ajax
> * [WICKET-728] - WicketTester could not handle Multipart form without
> upload
> * [WICKET-735] - SqlTimestampConverter and it

Re: Apache Wicket 1.3.0-beta4 released!

2007-10-11 Thread Advanced Technology®
Congrats to Wicket team. Superb job!

2007/10/11, Frank Bille <[EMAIL PROTECTED]>:
>
> This is the fourth beta for Apache Wicket we have prepared for your
> pleasure. It contains over 120 fixes to issues with previous releases and
> todo items we have cleared.
>
> In this announcement:
>
> * Apache Wicket
> * This release
> ** Portlet support
> * Migrating from 1.2
> * Downloading the release
> * Validating the release
> * Reporting bugs
>
> Eager people click here to download the distribution, others can read
> further:
>
> http://www.apache.org/dyn/closer.cgi/wicket/1.3.0-beta4/
>
> We thank you for your patience and support. Given the current list of
> remaining issues and the fact that we have just accepted portlet support
> back in, we think a fifth beta release is necessary. But that is no excuse
> for not giving this fourth installment a test drive!
>
> The Wicket Team
>
> -= Apache Wicket =-
>
> Apache Wicket is a component oriented Java web application framework
> currently undergoing incubation at the Apache Software foundation. With
> proper mark-up/logic separation, a POJO data model, and a refreshing lack
> of
> XML, Apache Wicket makes developing web-apps simple and enjoyable again.
> Swap the boilerplate, complex debugging and brittle code for powerful,
> reusable components written with plain Java and HTML.
>
> Our migration to a top level project is now completed and you can find our
> website and documentation here:
>
> http://wicket.apache.org
>
> -= This release =-
>
> This release is the fourth in a series of beta releases until we feel
> confident to finalize Wicket 1.3. This is called a beta because we don't
> have fixed all bugs, and probably haven't found them all either.
>
> -- Portlet support --
>
> A new feature in this beta4 release is the merge of Ate Douma's portlet
> branch into trunk. This reintroduces portlet support in Wicket.
>
> http://cwiki.apache.org/WICKET/portal-howto.html
>
> -= Migrating from 1.2 =-
>
> If you are coming from Wicket 1.2, you really want to read our migration
> guide, found on the wiki:
>
> http://cwiki.apache.org/WICKET/migrate-13.html
>
> -= Downloading the release =-
>
> You can download the release from the official Apache mirror system, and
> you
> can find it through the following link:
>
> http://www.apache.org/dyn/closer.cgi/wicket/1.3.0-beta4/
>
> For the Maven and Ivy fans out there: update your pom's to the following,
> and everything will be downloaded automatically:
>
> 
> org.apache.wicket
> wicket
> 1.3.0-beta4
> 
>
> Substitute the artifact ID with the projects of your liking to get the
> other
> projects.
>
> Please note that we don't prescribe a Logging implementation for SLF4J.
> You
> need to specify yourself which one you prefer. Read more about SLF4J here:
> http://slf4j.org
>
> -= Validating the release =-
>
> The release has been signed by Frank Bille, your release manager for
> today.
> The public key can be found in the KEYS file in the download area.
> Download
> the KEYS file only from the Apache website.
>
> http://www.apache.org/dist/wicket/1.3.0-beta4/KEYS
>
> Instructions on how to validate the release can be found here:
>
> http://www.apache.org/dev/release-signing.html#check-integrity
>
> -= Reporting bugs =-
>
> In case you do encounter a bug, we would appreciate a report in our JIRA:
>
> http://issues.apache.org/jira/browse/WICKET
>
> -= The distribution =-
>
> In the distribution you will find a README. The README contains
> instructions
> on how to build from source yourself and a list of all things that have
> been
> fixed, added and/or removed since the first beta release.
>
>
> -= Release Notes - Wicket - Version 1.3.0-beta4 =-
>
> ** Bug
> * [WICKET-349] - ListView can't undo changes to model
> * [WICKET-470] - AjaxFormComponentUpdatingBehavior won't work for
> RadioChoices
> * [WICKET-497] - For stateless mounted page incorrect url is generated
> * [WICKET-520] - Escape doesn't work for AjaxEditableLabel in Firefox
> * [WICKET-572] - replacing tr using ajax does not work in safari
> * [WICKET-611] - AbstractRequestTargetUrlCodingStrategy ignores query
> parameters if there is no parameter in the path
> * [WICKET-631] - Resource.getParameters() empty when resource is
> mounted
> * [WICKET-635] - FormTester Does Not Properly Handle DropDownChoice
> With
> Null Model
> * [WICKET-640] - modal window close button does not cancel the event
> after closing the window
> * [WICKET-685] - ReloadingWicketFilter not working with markup
> inheritance
> * [WICKET-705] - StringValue javadoc incorrect regrading conversion to
> checked exception
> * [WICKET-707] - Invoking a request listener on a page returns an
> Expired Error page
> * [WICKET-722] - IndicatingAjaxFallbackLink does not remove indicator
> if
> the link itself is added via ajax
> * [WICKET-728] - WicketTester could not handle Multipart form without
> upload
> * [WICK

Redirect After Exception

2007-12-10 Thread Advanced Technology®
Hi, All
I am having problems redirecting after throwing and cathing an Exception
inside the request.
Could someone give me some lights to solve this.


AT


Re: Redirect After Exception

2007-12-10 Thread Advanced Technology®
Thanks Dipu,
It was my falt, I was using "setResponsePage(newPage)" but it was not
working because of bug on my code.

2007/12/10, wicket user <[EMAIL PROTECTED]>:
>
> are you looking to redirect to a different page on catching an exception ?
> if thats is the case can you please try this in your catch
> try{
>  // do things
> }
> catch (Exception e)
> {
> throw new RestartResponseAtInterceptPageException(new
> YourInterceptPage());
> }
>
> regards
> dipu
>
>
> On Dec 10, 2007 10:31 AM, Advanced Technology(R) <[EMAIL PROTECTED]>
> wrote:
>
> > Hi, All
> > I am having problems redirecting after throwing and cathing an Exception
> > inside the request.
> > Could someone give me some lights to solve this.
> >
> >
> > AT
> >
>



-- 
AT(R)


Override ResourceReference

2009-03-11 Thread Advanced Technology®
Hi Guys,

Is there any way to override  a ResourceReference already added to the page?

Thanks

AT


Re: Equivalent of StackPanel for Wicket

2009-03-29 Thread Advanced Technology®
Take a look at
Wicket JQuery tab component [1], wicketstuff-jquery [2], wickext [3]

[1] -http://xhab.blogspot.com/2007/06/wicket-jquery-tab-component.html
[2] - https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff
[3] - http://code.google.com/p/wickext/



2009/3/29 HHB 

>
> The stack panel (or the suggested jQuery) is the navigation widget for the
> application which means it should be part of the markup of the top level
> parent class.
> Should this jQuery widget be wrapped as Wicket component?
>
>
> Leszek Gawron-2 wrote:
> >
> > HHB wrote:
> >> Hey,
> >> I want to employ something like StackPanel of GWT in my Wicket
> >> application.
> >> Any production ready component?
> >> Thanks for help and time.
> >
> > the easiest way is to use jQuery, the accordion widget in particular:
> >
> > http://jqueryui.com/demos/accordion/
> >
> > --
> > Leszek Gawron
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Equivalent-of-StackPanel-for-Wicket-tp22726615p22765008.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


-- 
AT®


Re: Equivalent of StackPanel for Wicket

2009-03-29 Thread Advanced Technology®
The first link it was just resource to see how to implement a wicket
component.On second and third you can see the Accordion component
implemented.



2009/3/29 HHB 

>
> Thanks Azarias but I'm not looking for tab component, I'm looking for
> accordion component (as Leszek suggested).
>
>
> Azarias Tomás wrote:
> >
> > Take a look at
> > Wicket JQuery tab component [1], wicketstuff-jquery [2], wickext [3]
> >
> > [1] -http://xhab.blogspot.com/2007/06/wicket-jquery-tab-component.html
> > [2] - https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff
> > [3] - http://code.google.com/p/wickext/
> >
> >
> >
> > 2009/3/29 HHB 
> >
> >>
> >> The stack panel (or the suggested jQuery) is the navigation widget for
> >> the
> >> application which means it should be part of the markup of the top level
> >> parent class.
> >> Should this jQuery widget be wrapped as Wicket component?
> >>
> >>
> >> Leszek Gawron-2 wrote:
> >> >
> >> > HHB wrote:
> >> >> Hey,
> >> >> I want to employ something like StackPanel of GWT in my Wicket
> >> >> application.
> >> >> Any production ready component?
> >> >> Thanks for help and time.
> >> >
> >> > the easiest way is to use jQuery, the accordion widget in particular:
> >> >
> >> > http://jqueryui.com/demos/accordion/
> >> >
> >> > --
> >> > Leszek Gawron
> >> >
> >> > -
> >> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> >> > For additional commands, e-mail: users-h...@wicket.apache.org
> >> >
> >> >
> >> >
> >>
> >> --
> >> View this message in context:
> >>
> http://www.nabble.com/Equivalent-of-StackPanel-for-Wicket-tp22726615p22765008.html
> >> Sent from the Wicket - User mailing list archive at Nabble.com.
> >>
> >>
> >> -
> >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> >> For additional commands, e-mail: users-h...@wicket.apache.org
> >>
> >>
> >
> >
> > --
> > AT®
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Equivalent-of-StackPanel-for-Wicket-tp22726615p22766234.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


-- 
AT®


Re: [VOTE] Organizing Wicket Stuff / Regular Release Schedule?

2008-11-25 Thread Advanced Technology®
 X ] - YES - I would like to see at least the most used Wicket Stuff
projects
AT(R)


Re: [OT] wicket users around the world

2008-12-12 Thread Advanced Technology®
Maputo, Mozambique

Using Wicket to develop all Web based apps on a smal Bank.

-- 
AT(R)


Re: Contributing to Wicket - Client side form validation

2008-12-30 Thread Advanced Technology®
Hi Carl,



Yeah, Pure Javascript validation is something needed.

I've been trying to integrate wicket with yav a couple of days ago .

I think you contribution will be very interesting.

 Googlecode project is a good step.

Azarias Tomás


2008/12/30 cazoury 

>
>
-- 
AT(R)


Re: Lambdas in Java Preview - Part 5: Apache Wicket

2010-07-25 Thread Advanced Technology®
It's working for me, or  now is working.


On 25 July 2010 15:42, always_rick  wrote:

>
> the url is not working
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/Lambdas-in-Java-Preview-Part-5-Apache-Wicket-tp2297512p2301552.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


-- 
AT®


Re: WicketForge Needs a New Project Lead

2010-08-01 Thread Advanced Technology®
Hi Nick,
If not late I can take it.

Regards
Azarias


On 20 July 2010 05:20, Nick Heudecker  wrote:

> Hi,
>
> As my lack of activity has probably demonstrated, I'm currently unable to
> allocate time to WicketForge.  With a startup and grad school beginning,
> I'm
> swamped and looking for someone to take over the project.  Any takers?
>
> -Nick
>



-- 
AT®