Re: Select2Choice dropdown box is not appeared in correct position

2013-01-02 Thread Madasamy mcruncher
Thank you so much.i migrated wiquery-jquery-ui version to 6.2.0 now it is
working fine.


ResourceAggregator in Wicket 6.x

2013-01-02 Thread Simon B
Hi, 

I'm trying to aggregate my javascript files into one file and then get them
placed at the bottom of the page just before the  tag.

I've looked at the example here: 

http://www.wicket-library.com/wicket-examples-6.0.x/resourceaggregation

I've managed to copy the example so that the files are placed just before
the  tag, but the aggregation bit still eludes me.  

I've tried



and 


Neither seem to aggregate // merge the javascript files.

Can someone give me a piece of example code that achieves this.  

Any help much appreciated.

Cheers
Simon



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/ResourceAggregator-in-Wicket-6-x-tp4655125.html
Sent from the Users forum 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



GMap3 component problem in Table tag

2013-01-02 Thread chrome1235
Hi,When I use gmap3 component in table-tr-td tag, it does not show
anything.Like this.
Map
But if I use it outside of the table tag, there is no problem.How can I use it, in table tag?Thanks a lot..Kemal -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/GMap3-component-problem-in-Table-tag-tp4655121.html Sent from the Users forum 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

Warning when filtering data table with map as filter state

2013-01-02 Thread Thor Åge Eldby
The examples I've seen using filtering on data table uses pojo model object
with property model for the filter state. I don't like to change my model
objects to accept the null-value fields that are needed for the filtering
to work. Instead I use maps with property model. This work fine except for
two problems.

I have to add sub-maps for any sub-objects referred in the filter property.
 That I've fixed. I also get warnings:

  org.apache.wicket.markup.html.form.AbstractTextComponent - Couldn't
resolve model type of
Model:classname=[org.apache.wicket.model.PropertyModel]:nestedModel=[org.apache.wicket.extensions.markup.html.repeater.data.table.filter.FilterStateModel@5fa31d56]:expression=[name]
for [TextField [Component id = filter]], please set the type yourself.

I'm not sure why it needs the property type. It's perfectly correct to
return null when the field do not have a value in the map. However I tried
to set the property object to an empty string and I still get the same
warning. It seems that the PropertyResolver#MapGetSet-class does not
override to getObjectClass()-method even though it should be able to return
a class when the property object is available.

Has anyone else tried this? Am I stretching it a bit with using maps as
filter state for the data table filtering?

Thanks
ThorÅge


Default selecting(highlighting) values from ListMultipleChoice

2013-01-02 Thread wicket_new_user
Hi,
Is there a way to select the values (in other words, highlighting all the
values in the box) from the "ListMultipleChoice" component ?

i've an available and selected List boxes. when the item is moved from
Available to Selected, making the item as highlighted. 
If the Highlight section is removed from the Selected list box, validation
is firing that "Field 'Selected' is required" as the object is required in
OnSubmit()


thanks
Wn



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Default-selecting-highlighting-values-from-ListMultipleChoice-tp4655118.html
Sent from the Users forum 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: GMap3 drawing circle

2013-01-02 Thread Martin Grigorov
Hi,

WicketStuff GMap3 project is just integration between Wicket and Google
Maps.
Maybe some Wicket user can answer your question but there is a bigger
chance if you ask it in some Google Maps related forum, because there is
nothing Wicket specific in the question.


On Wed, Jan 2, 2013 at 12:47 PM, lsm_7  wrote:

> Hi all,
>
> I have a web application which shows in a gmap component different points
> around user's position. The idea is to draw a circle of accuracy in user's
> position. Is there any way to do it without using GPolygon??
>
> Thanks in advance!
>
>
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/GMap3-drawing-circle-tp4655115.html
> Sent from the Users forum 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
>
>


-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com 


GMap3 drawing circle

2013-01-02 Thread lsm_7
Hi all,

I have a web application which shows in a gmap component different points
around user's position. The idea is to draw a circle of accuracy in user's
position. Is there any way to do it without using GPolygon??

Thanks in advance!



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/GMap3-drawing-circle-tp4655115.html
Sent from the Users forum 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: JPA annotations

2013-01-02 Thread Jochen Mader
I think you should first understand what the different JPA-annotations
actually do.
@Entity, @Table, @Id, @GeneratedValue are annotations used on the
entity level to tell the mapper what to do with properties. These
informations are of no interest to Wicket.
@EJB, @PersistenceUnit, @Resource are annotations used for isntances
injectable by an appropriate container (which can bee CDI, Guice
Spring, ...).

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



Re: Select2Choice dropdown box is not appeared in correct position

2013-01-02 Thread Thomas Götz
Everything works fine if you use the current version of wiquery-jquery-ui 
(6.2.0) …

   -Tom




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



Re: Select2Choice dropdown box is not appeared in correct position

2013-01-02 Thread Thomas Götz
Currently analyzing. I found out that if you do not add the datepicker then the 
select2 component is displayed correctly …

   -Tom


On 21.12.2012, at 03:36, Madasamy mcruncher  wrote:

> Here i am attached quickstart project.
> 
> To recreate problem to follow steps
> 
> 1. Downloaded "select2.zip" from here.
> 2. Unpack that zip file.
> 3  Directory called "select2" will be created.
> 4. To run the project type "mvn clean package jetty:run"
> 5. Then type "localhost:7070" in your browser.
> 


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