create custom feedback panel list

2009-02-12 Thread Christoph Grün
Hello! How can I create a custom ComponentFeedbackPanel so that I the html markup is customized (without ulli)? Thanks a lot, Christoph

DefaultDataTable - how to get index of selected element

2009-02-14 Thread Christoph Grün
Hi all, I have a datatable and following method that delivers the selected item in the table. How can I get the index of the selected element? There are methods for getting the current page index and all page rows, but I couldn’t find a function for getting the index of the current element.

propertycolumn - date column, checkbox column

2009-02-14 Thread Christoph Grün
Hi all, columns.add(new PropertyColumn(new ModelString(Title), title, title )); How can I have such a property column that displays java.util.dates? I would also need the same for checkboxes or true/false values. Thanks a lot, Christoph

resize and crop web images

2009-12-22 Thread Christoph Grün
Hi, Is there a project/work that allows to resize and crop web images? I would like to show Wikipedia images in a list, each displayed as e.g., 100*100 px . Thanks a lot, Chris - To unsubscribe, e-mail:

DojoIntegerSlider

2009-05-02 Thread Christoph Grün
Hello, I am using Wicket 1.4 and the DojoIntegerSlider http://wicketstuff.org/confluence/display/STUFFWIKI/Dojo+Integer+Slider. I have attached the library wicketstuff-dojo-1.3.0-snahpshot.jar. I am getting following error, are there some compatibility issues? Br, Christoph

yui slider component does not work

2009-05-05 Thread Christoph Grün
Hello, I have downloaded the yui-examples-1.4-20090427.160726-141.war file. The sliders cannot be moved with the mouse and rather behave static. Moreover, the javascript error “yahoo.widget.slider is null” is reported. It seems that some js files are missing. Is there a

calendar component with date TIME field

2009-05-07 Thread Christoph Grün
Hi! Is there a calendar component with date TIME field? The calendar components, that I know so far (e.g., YUI DatePicker) just provide a date field. I also would need a field for hours/minutes. Instead of adding textfields for hours/minutes seperately, it would be nice to have them

jquery slider component not working

2009-05-07 Thread Christoph Grün
Hello, I tried out different slider components jquery slider (jquery-examples-1.4-20090427.160726-150.war), yui slider (yui-examples-1.4-20090427.160726-141.war). Actually, none of them works out of the box with Wicket 1.4. The class below is the JQuery slider. The onChange method is

AW: calendar component with date TIME field

2009-05-07 Thread Christoph Grün
org.apache.wicket.extensions.yui.calendar.DateTimeField Best, Ernesto Christoph Grün wrote: Hi! Is there a calendar component with date TIME field? The calendar components, that I know so far (e.g., YUI DatePicker) just provide a date field. I also would need a field for hours/minutes. Instead of adding

RadioGroup with Boolean Model

2009-05-08 Thread Christoph Grün
Hello, I want to have a radio group that looks like this: How do I have to set the model of the Radio Group? Must this be a Boolean one and what is set with getObject and setObject methods? input name=radiogroup wicket:id=field1 type=radio id=radiogroup13-field114 value=radio10

AW: yui slider component does not work

2009-05-08 Thread Christoph Grün
being moved to another package. I was doing some house keeping :p it should be fixed in /yui/ trunk now (no change in yui-examples). can you try again? Joshua 2009/5/5 Christoph Grün chris...@gmx.at Hello, I have downloaded the yui-examples-1.4-20090427.160726-141.war file. The sliders

images as resources

2010-05-07 Thread Christoph Grün
Hi, I would like to have all images in a folder under resources and access them in different panels, which are in the package com.web.panels; What is the best way to do this and how to define the relative path? Thanks, Christoph

load external image from url and use it application wide

2010-05-09 Thread Christoph Grün
Hi, I would like to load an image from an external url, store it in a domain object and use it application wide without reloading it again from that URL. It should be only loaded the first time it is accessed, then stored in the domain object. In the constructor of the domain class, I have

warp persist, guice wicket: use warp persist during wicket application startup to load db objects

2010-05-11 Thread Christoph Grün
Hi all, I am using Wicket together with Guice and Warp Persist/Servlet. I have registered the PersistenceService in the contextInitialized method. However, I would like to do some data loading from the database when wicket starts, and like to access Hibernate Daos. I am getting the error:

wicket serialization problem of guice proxies

2010-05-18 Thread Christoph Grün
Hi all, I am using Wicket 1.4.8 with Guice 1.0 and Warp Persist/Hibernate. When injecting DAOs directly into Wicket components, it works fine (I inject the DAO Interface). However, I would like to inject them, next to other objects, also in classes that do some business logic. Those classes

@Inject (Guice) with non components (i.e. DataProvider) injectorHolder has not been assigned

2010-05-21 Thread Christoph Grün
If I use InjectorHolder.getInjector().inject(this); with Guice I am getting the error: Caused by: java.lang.IllegalStateException: InjectorHolder has not been assigned an injector. Use InjectorHolder.setInjector() to assign an injector. In most cases this should be done once inside

gmap2 numbered markers and autozoom

2010-08-23 Thread Christoph Grün
Hi, is it possible to create numbered markers with gmap2? Futhermore, I would like to autozoom and center the map window according to the visible markers. Can someone give an example? Thanks a lot, Christoph - To