Re: column width ajustable table

2009-02-24 Thread PY

The inmethod Datagrid has this functionality. ( adjustable column width)


miro wrote:
 
 Are there any adjustable tables in the sense adjust width of the column, 
 provided by wicket, an example is Sonatype Nexus Repository manager 
 

-- 
View this message in context: 
http://www.nabble.com/column-width-ajustable-table-tp22168813p22187193.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



Re: What IDE best fits with Wicket?

2009-02-24 Thread PY

+1 for IDEA.
The wicket plugin is really simple but allow to match up markup id from HTML
to Java code.
Netbeans is cool too.


Maarten Bosteels wrote:
 
 IDEA users, don't be shy ! ;-)
 
 Probably nobody dared to mention it because it's not free.
 But guess what. It is free for Open Source development (and a personal
 license costs only 225 euro)
 
 I think IDEA is really fantastic.
 It has great maven support out-of-the-box, it will also download sources
 and
 javadocs based on your dependencies.
 And there's a nice plugin for Wicket:
 http://code.google.com/p/wicketforge/
 
 My main downside for IDEA is that it still doesn't have proper
 multi-monitor
 support.
 
 To be honest, I haven't tried eclipse or netbeans in a while, so I can't
 really compare.
 
 Maarten
 
 On Tue, Feb 24, 2009 at 6:45 PM, James Carman
 jcar...@carmanconsulting.comwrote:
 
 +1!  We had an awful lot of trouble getting it to work for us.

 On Tue, Feb 24, 2009 at 12:38 PM, Martijn Dashorst
 martijn.dasho...@gmail.com wrote:
  m2eclipse is absolutely worthless for anything beyond a quickstart. It
  is constantly reparsing poms, grinding eclipse to a halt. It failed to
  generate the right project dependencies for our multimodule project
  that consists of 2 multimodule child projects. It failed miserably to
  uninstall, needing me to axe my eclipse installation.
 
  In short: my experience (and that of my co-workers) with m2eclipse is
  that it is far from ready for prime time.
 
  Martijn
 
  On Tue, Feb 24, 2009 at 5:55 PM, Brill Pappin br...@pappin.ca wrote:
  I should add something about the Eclipse maven plugins... don't go for
 the
  official eclipse Q4 plugin... use the Maven Integration 4 Eclipse
 plugin
  (and actually the development version if your jiggy with it, it works
 and
  gets updated/fixed way more often).
 
  If your on Netbeans, I think Maven will generate Netbeans project
 files
 for
  you as well (it will do so for eclipse), so you could actually flip
 back
 and
  forth if you wanted.
 
  - Brill Pappin
 
  On 23-Feb-09, at 5:19 PM, Pierre Goupil wrote:
 
  +1, I like Wicket Bench. And with M2Eclipse, you have the full
 sources
 
  JavaDoc just by adding Wicket as a dependency, which is very
 convenient.
  But
  don't expect Wicket Bench to do too much, it's just a small, useful
 tool.
 
  Pierre
 
 
  Hi, I use Eclipse with Wicket Bench plugin and it works very fine.
 
  --
  Sans amis était le grand maître des mondes,
  Eprouvait manque, ce pour quoi il créa les esprits,
  Miroirs bienveillants de sa béatitude.
  Mais au vrai, il ne trouva aucun égal,
  Du calice du royaume total des âmes
  Ecume jusqu'à lui l'infinité.
 
  (Schiller, l'amitié)
 
 
  -
  To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
  For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 
 
 
  --
  Become a Wicket expert, learn from the best: http://wicketinaction.com
  Apache Wicket 1.3.5 is released
  Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.
 
  -
  To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
  For additional commands, e-mail: users-h...@wicket.apache.org
 
 

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


 
 

-- 
View this message in context: 
http://www.nabble.com/What-IDE-best-fits-with-Wicket--tp22168133p22187465.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



Re: Graphs, Charts and Wicket

2009-02-11 Thread PY

The javascript is done in the SWFObject.

To make it work in a Ajax request you need to add :
if (AjaxRequestTarget.get() != null){
   AjaxRequestTarget.get().appendJavascript(js);
}

where js is the javascript generated .
This will make evaluate the javascript and therefore add the flash object.

-PY

Thies Edeling-2 wrote:
 
 Works nicely but how to initialize the chart when the panel is loaded
 through an ajax req/res ? Is there a javascript method that writes out the
 Flash object tag ? That seems to be completely missing.
 
 On Mon, Feb 2, 2009 at 10:28 AM, Maarten Bosteels
 mbosteels@gmail.comwrote:
 
 Also have a look at
 http://cwiki.apache.org/WICKET/open-flash-chart-and-wicket.html

 Maarten

 On Thu, Jan 29, 2009 at 2:45 PM, newbieabc newbie...@yahoo.com wrote:

 
  If you don't mind, could you post your code to display the chart you
 used?
  I was interested the gradient fill chart they offered, but am really
 new
 to
  wicket and didn't understand how to add it in wicket.
 
  Thanks!
 
 
  Jurek Piasek wrote:
  
   I have been using Amcharts
  
   http://www.amcharts.com/
  
   together with SWFObject
  
 
 http://cwiki.apache.org/WICKET/creating-a-behavior-to-use-a-javascript-library.html
  
   Regards,
   Jurek
  
  
   On Sun, Nov 16, 2008 at 8:20 PM, Yazbek, Daniel (Daniel)
   dyaz...@avaya.comwrote:
  
   Hi all,
  
  
  
   I'd like to put some simple bar graphs, pie graphs and possible line
   graphs into my wicket pages.
  
  
  
   Have any of you used a good framework that you can recommend, that
 also
   plays nicely with Wicket?
  
  
  
   Thanks!
  
  
  
   -Daniel.
  
  
  
  
  
  
  
  
 
  --
  View this message in context:
 
 http://www.nabble.com/Graphs%2C-Charts-and-Wicket-tp20532374p21727142.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
 
 

 
 

-- 
View this message in context: 
http://www.nabble.com/Graphs%2C-Charts-and-Wicket-tp20532374p21965728.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



Re: Wicket integration with good charts api

2008-12-04 Thread PY

Really interested by a Wiki page too.

-- 
View this message in context: 
http://www.nabble.com/Wicket-integration-with-good-charts-api-tp20322515p20837861.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]