Re: How to override URLs generated by bookmarkable mapper

2012-11-20 Thread Martin Grigorov
Hi, I suggest you to upgrade to latest version of Wicket and try. The generated Urls should be like: ./bookmarkable/wicket/com.example.MyPage >From your description I didn't understand why JQuery Mobile doesn't like 'bookmarkable/wicket' ? This is just a part of the Url path. You can always #moun

Re: Session timeout / IDataStore data removal in Wicket 6

2012-11-20 Thread Martin Grigorov
Hi, It should work the same way. If you are able to reproduce it with a quickstart application then please attach it to a ticket in Jira. Also you can try with a newer version of Jetty (8.1.8) or even Tomcat because the web container deals with the session management and Wicket just registers a li

Re: wicket 1.4.7 - encoding strategy - ajax button

2012-11-20 Thread Martin Grigorov
Hi, Most of your pastes didn't make it and it is not very clear what you wanted to describe. On Mon, Nov 19, 2012 at 9:10 PM, Daniel Fernandez wrote: > Hi, > > > > > I'm using wicket 1.4.7 and I'm facing some problem trying to solve some > problem about URLs: > > > > > > > > > > > 1) I'm using t

Re: how to get the listview's dropdownchoice value

2012-11-20 Thread Martin Grigorov
You need a separate ddlmodel for each DDC. Currently you are passing the same backend to all DDCs and they override its value. On Tue, Nov 20, 2012 at 10:19 AM, david.li wrote: > Through the ddlmodel.getObject() just get the value of the last > DropDownChoice,but I want to get the value of the

Re: how to get the listview's dropdownchoice value

2012-11-20 Thread david.li
you said need a separate ddlmodel for each DropDownChpice. How to implement it in ListView? Can you give me a sample? Thanks. Martin Grigorov-4 wrote > You need a separate ddlmodel for each DDC. > Currently you are passing the same backend to all DDCs and they override > its value. > > > On Tu

Re: how to get the listview's dropdownchoice value

2012-11-20 Thread Martin Grigorov
List ddlmodels = List selection = Arrays.asList("A", "B"); form.add(new ListView("lis", selection) { @Override protected void populateItem(ListItem item) { List list; if (item.getModelObject().equals("A")) { list = Arrays

Handling of Ajax response fails [Fragments]

2012-11-20 Thread Gonzalo Aguilar Delgado
Hello, I'm doing a scaffolding application for wicket + dojo. I'm using fragments to change between EDIT, UPDATE, DELETE screens. On each switch I have to reinitializate components on the changed zone of the web via javascript. I've implemented this in a clean and efficient way ( I think ), bec

Re: Disallowing a logged-in user to access some page

2012-11-20 Thread pureza
Hi Martijn, Thanks for your reply. I am currently using wicket-shiro. Do you know if it is possible to mix auth-roles and wicket-shiro in the same project? Regards, Luis -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Disallowing-a-logged-in-user-to-access-some-pa

Re: Wicket-Atmosphere & complex JS

2012-11-20 Thread Pierre Goupil
Good afternoon, I've created a Jira ticket with a quickstart. Here is the link: https://issues.apache.org/jira/browse/WICKET-4869 Thanks a lot in advance. Regards, Pierre -- Le bonheur n'est pas une destination, mais une façon de voyager. Papa d'une petite Lou-Ann depuis le 30 juin.

Re: Updating datatable ajax

2012-11-20 Thread Sven Meier
Show us the relevant code from your DataProvider. Sven anton wrote > I use a class extends of DataProvider. > The problem is that not change the values ​​in the table, no updating. ¿? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Updating-datatable-ajax-tp4653

Strange behavior of AutoCompleteTextField choice list and mouse

2012-11-20 Thread Dmitriy Neretin
Hello everybody! I have a strange behavior of a text field above. When I see a choice list and try to select an entry with a enter key - no problem. But when I try to select an entry with a mouse - no chance! The selected entry doesn't appear in the text field... I added to the filed AjaxFormComp

[Announce] Apache Wicket 6.3.0 released

2012-11-20 Thread Martijn Dashorst
The Apache Wicket PMC is proud to announce Apache Wicket 6.3.0! This release marks the third minor release of Wicket 6. Starting with Wicket 6 we use semantic versioning for the future development of Wicket, and as such no API breaks are present in this release compared to 6.0.0. New and notewort

Re: update webmarkupcontainer from fragment , container onBeforeRender() method is not being called

2012-11-20 Thread fachhoch
found the issue , its becasue of not using onConfigure or callOnBeforeRenderIfNotVisible -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/update-webmarkupcontainer-from-fragment-container-onBeforeRender-method-is-not-being-called-tp4653960p4654030.html Sent from

Re: [Announce] Apache Wicket 6.3.0 released

2012-11-20 Thread Cedric Gatay
Congrats ! __ Cedric Gatay http://www.bloggure.info | http://cedric.gatay.fr | @Cedric_Gatay On Tue, Nov 20, 2012 at 4:56 PM, Martijn Dashorst < martijn.dasho...@gmail.com> wrote: > The Apache Wicket PMC is proud to announce Apache Wicket 6.3.0! > > This release

Re: Strange behavior of AutoCompleteTextField choice list and mouse

2012-11-20 Thread Martin Grigorov
Works OK at http://www.wicket-library.com/wicket-examples/ajax/autocomplete?0 On Tue, Nov 20, 2012 at 5:50 PM, Dmitriy Neretin < dmitriy.nere...@googlemail.com> wrote: > Hello everybody! > > I have a strange behavior of a text field above. When I see a choice list > and try to select an entry wi

Re: How to override URLs generated by bookmarkable mapper

2012-11-20 Thread Martin Grigorov
You can remove href="#" from your template markup completely. With will set href=something, where something is the relative url to the destination page. Relative against the current url ! I.e. if you are at .../wicket/bookmarkable/com.example.PageA and the destination is wicket/bookmarkable/com.exa

Re: Updating datatable ajax

2012-11-20 Thread Sven Meier
The interesting stuff is missing: How do you pass the input of your textField into your provider to limit/filter the values? Sven On 11/20/2012 04:13 PM, anton wrote: UserProvider.java https://cwiki.apache.org/WICKET/simple-sortable-datatable-example.html -- View this message in context:

Re: Updating datatable ajax

2012-11-20 Thread Sven Meier
table.setDefaultModelObject(new UsertProvider(ListUser()) The dataTable doesn't use its model object and you cannot change the dataProvider either. You have to make your UserProvider dynamic: table = new DataTable(..., new IDataProvider() { @Override protected List getList() {

Re: How to override URLs generated by bookmarkable mapper

2012-11-20 Thread shimin_q
Thanks, Martin! I just updated wicket to 6.3.0 and removed the href="#" from my html template. Wicket does generate a relative url in "href=" relative to the current url. This, however, does not solve the issue with JQuery Mobile, which loads href="com.alcatel_lucent.nms8770.awol.client.web.pa

Re: Updating datatable ajax

2012-11-20 Thread Sven Meier
Please read here: http://stackoverflow.com/questions/7935227/apache-wicket-datatable-filtering-with-filtertoolbar-vs-manual-filtering Sven On 11/20/2012 08:48 PM, anton wrote: //UserProvider extends SortableDataProvider final ISortableDataProvider datatable = new UserProvider(tab

Wicket 6 Atmosphere - atmosphere version 1.0.4

2012-11-20 Thread pkc
What are the plans for the Atmosphere push support? I have only been able to get my application working (for the most part) with atmosphere 1.0.0. Sometimes the push data gets lost and I have not been able to locate the issue so I'm hoping a newer release addresses the issue. Also, when trying

Re: Wicket 6 Atmosphere - atmosphere version 1.0.4

2012-11-20 Thread Pierre Goupil
Good evening, This topic should be of interest to you: https://groups.google.com/forum/#!msg/atmosphere-framework/pb8lZC3pMtY/QjZ0D4EJVDYJ Regards, Pierre On Tue, Nov 20, 2012 at 10:35 PM, pkc wrote: > What are the plans for the Atmosphere push support? I have only been able > to > get my

Re: Ability to simply enable jQuery.noConflict() globally for an application in Wicket 6

2012-11-20 Thread Marcin Zajączkowski
Thanks Martijn for your replies. I have just found them. On 2012-11-13 13:23, Martijn Dashorst wrote: > If you don't have a common base page for all your pages, then you can > use a ComponentInstantiationListener that adds a behavior to all > pages, rendering the specific javascript invocations. >

Re: Wicket 6 Atmosphere - atmosphere version 1.0.4

2012-11-20 Thread pkc
I'm not confident the atmosphere wicket extension can handle caching and other necessary options for a real world app. It works great for simple demo's but we are having issues with pages that have lots of self updating components and occasional VPN issues. I'm looking for a road map for wicket s