Re: Does automatic resource reloading in development mode still work in 6.x?

2012-12-20 Thread pkc
Can you send the code you use? This is on windows with a classpath set up with maven and a standalone jetty 8. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Does-automatic-resource-reloading-in-development-mode-still-work-in-6-x-tp4654955p4654983.html Sent from

Re: Does automatic resource reloading in development mode still work in 6.x?

2012-12-20 Thread pkc
Thanks Sven. This looks like an issue with Intellij. I tested again with Eclipse and it works fine. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Does-automatic-resource-reloading-in-development-mode-still-work-in-6-x-tp4654955p4654989.html Sent from the Users

Does automatic resource reloading in development mode still work in 6.x?

2012-12-19 Thread pkc
Ever since migrating from 1.5 to 6.x, I have had to manually recompile java classes to get the corresponding html changes to be reloaded. I tried lots of path variations but after looking into the wicket source code, it doesn't appear the resource watcher is even being started so not sure how

AjaxLazyLoadingPanel finished event?

2012-12-06 Thread pkc
Hi Everyone, I need to update a feedback panel with some info after a lazy load panel finishes getting its data. I was looking for a method like onPanelLoaded( AjaxRequestTarget target ) but didn't see anything so not sure how to get my feedback panel refreshed. Thanks for any tips. -- View

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

Re: Wicket 6 Atmosphere - where to configure filter-mapping dispatchers?

2012-11-13 Thread pkc
Just got a response from Jeanfrancois in the atmosphere forum and dispatchers are currently not supported by the ReflectorServletProcessor. There is a general ticket open for better filter support: https://github.com/Atmosphere/atmosphere/issues/157 -- View this message in context:

Re: Wicket 6 and wicket push

2012-11-13 Thread pkc
The atmosphere support is experimental right? I just migrated from 1.5 to 6.2 and used the wicket atmosphere support but I'm having issues where pushes sometimes stop working. I thought I found a way around it by turning on atmosphere broadcaster caching and message length checking but then I

Wicket 6 Atmosphere - where to configure filter-mapping dispatchers?

2012-11-12 Thread pkc
Before atmosphere, i used a standard web.xml filter and the following mappings: filter-mapping filter-namewicket/filter-name url-pattern/*/url-pattern dispatcherREQUEST/dispatcher dispatcherINCLUDE/dispatcher dispatcherFORWARD/dispatcher dispatcherERROR/dispatcher

Re: How to update a label BEFORE a form is submitted?

2012-03-26 Thread pkc
Thanks Martin. I am back on track after looking at those link examples and the source code for AjaxIndicatorAppender. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-update-a-label-BEFORE-a-form-is-submitted-tp4495663p4507917.html Sent from the Users forum

How to update a label BEFORE a form is submitted?

2012-03-22 Thread pkc
Still looking for help on how to update page components before a long running page submit. I don't seem to see the light on chaining events from same button so if someone can provide an example it would be greatly appreciated. 1) User presses submit button 2) A label gets updated saying button

Ajax status message for long requests

2012-03-20 Thread pkc
I would like to set a label and make a spinner visible before submitting a form that takes a long time. There are some posts on various techniques but all I really want is to chain a couple ajax events. 1) User clicks button or changes dropdown value 2) ajax update to a label saying Task XYZ

AjaxFallbackDefaultDataTable selected row color

2012-02-24 Thread pkc
Is there a way to highlight the selected row after clicking on a link in a DataTable cell? public final class ColumnList extends ArrayListIColumnlt;QuikViewEnv { public ColumnList() { add(new AbstractColumnQuikViewEnv(new ModelString(Environment), name){

Re: Wicket as a templating engine

2012-02-18 Thread pkc
Interesting. I may try to make a generic wicket:insert=quot;abc.xyzquot; tag that uses the page's default property model to resolve the abc.xyz. Will this work? Two other cool things I'm looking for: 1) Does wicket:extend support a codeBehind attribute? Say I have 20 stateless pages and I

Wicket as a templating engine

2012-02-17 Thread pkc
I'm using wicket page inheritance to take care of consistent look and feel for pages but I'm stuck on one detail... In the markup for a WebPage, I need to insert dynamic text in lots of places. What is the closest wicket has to something like this: htmlbodyadd text here

1.5.4 error handling with web.xml error-page issue

2012-02-16 Thread pkc
Am I missing something simple? I tried about 100 misc trial and error things to get this to use my wicket page to handle 404's (and other errors). filter-mapping filter-namewicket/filter-name url-pattern/*/url-pattern /filter-mapping

Re: 1.5.4 error handling with web.xml error-page issue

2012-02-16 Thread pkc
I have no idea if this is documented and why it is needed but it works after changing web.xml to filter-mapping filter-namewicket/filter-name url-pattern/*/url-pattern dispatcherREQUEST/dispatcher dispatcherERROR/dispatcher /filter-mapping -- View this message in context:

Re: Wicket Ajax direction and roadmap regarding push-like updates

2012-02-08 Thread pkc
Sounds promising. As a wicket user, I would like to see a very tight integration of a push API in wicket-core. It seems most solutions are overly complicated and it would be nice to have a simple API that just let you add listeners or set up channels, then fire off a job and wicket core would

Re: Wicket Ajax direction and roadmap regarding push-like updates

2012-02-06 Thread pkc
It is a tricky topic because what can be done from the wicket api level doesn't have to use true push for the default implementation. I don't like the push solutions out there. Ice-push looked promising because of the hype but after issues with memory leaks and overly complicated requirements,

Wicket Ajax direction and roadmap regarding push-like updates

2012-02-02 Thread pkc
Please correct me if i'm wrong but it looks like 1.5 and 1.6 wicket will continue to use behaviors to work with ajax events driven by user events or timers. In the real world a lot of my ajax needs occur when i need to push back page state changes and don't want to write 100 lines of code with

Re: Wicket Ajax direction and roadmap regarding push-like updates

2012-02-02 Thread pkc
Thanks for the reply. The direction I'm wondering about is kind of like chained ajax requests and responses. At the API level you would update some controls in the onClick(), then tell wicket to return the updated ajax targets by calling some API method that would block until the web browser