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 nheudec...@gmail.com 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®


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 sh...@hotmail.com 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: 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 hubaghd...@yahoo.ca


 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 hubaghd...@yahoo.ca
 
 
  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®


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: 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 carl.azo...@zenika.com



-- 
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: [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: 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: 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 input type=text
  ...
  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: [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: 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)


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(span class=' + (message.isError() ?
erro : mensagem) + '/));
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: 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]



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: 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-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: 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)


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: 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)


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)