Re: Central feedback-panel?

2010-06-07 Thread Martin Grigorov
On Mon, 2010-06-07 at 00:33 -0500, Jeremy Thomerson wrote: > On Sun, Jun 6, 2010 at 11:05 PM, shox wrote: > > > Hi, > > > > I have a Base-Layout and a changing content in a wicket:child-component. > > > > Can I have a central Dialog, like a jQuery UI-Dialog ( > > http://jqueryui.com/demos/dialog

Re: Central feedback-panel?

2010-06-07 Thread ViShap
That looks sweet, I will have a closer look later this week. Thanks! On Mon, Jun 7, 2010 at 3:15 AM, Martin Grigorov wrote: > On Mon, 2010-06-07 at 00:33 -0500, Jeremy Thomerson wrote: > > On Sun, Jun 6, 2010 at 11:05 PM, shox > wrote: > > > > > Hi, > > > > > > I have a Base-Layout and a chang

RE: drag and drop

2010-06-07 Thread DerBernd
Hi, another question of mine: Is there any implementation of an "Sortable" where I can change order of items within an by dragging and dropping. Or what would even be better: change order of Components in an RepeatingView. I found the org.wicketstuff.jquery.dnd.DnDSortableHandler. But do not r

Re: Image Upload Using TinyMCE Within Wicket Framework

2010-06-07 Thread danisevsky
Hi, I checkout https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/branches/wicketstuff-core-1.4.9/and build tinymce-mce and get the same result (upload example doesn't work - screenshot is in my previous email) When I checkout only tinymce-parent - build failed: Reason: Cannot find pare

Re: Dialog involving multiple pages and a VO: some best practices?

2010-06-07 Thread Joseph Pachod
Igor Vaynberg wrote: obviously you have to know what you are passing around. you shouldnt pass around objects that link to page instances, such as anonymous classes of models. -igor if that's all, then all fine for me quite different from what I had in mind about different references to th

Re: drag and drop

2010-06-07 Thread Istvan Jozsa
You can implement by adding DraggableBehavior *and* DroppableBehavior to each item, something like this: add(new DraggableBehavior() { { setName("someName"); setRevert(DraggableBehavior.DragRevertMode.ALWAYS); setRevertDuration(0); setHelper(DragHelperMode.CLONE

Re: drag and drop

2010-06-07 Thread DerBernd
Ok, I think I understood, but how do you get the seqnum? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/drag-and-drop-tp1881857p2245847.html Sent from the Wicket - User mailing list archive at Nabble.com. -

Re: [wicketstuff/wicket-contrib-jasperpreports] Is anyone supporting this?

2010-06-07 Thread Charles Deal
Excellent. sf username: cdeal First things first then. If I get some patches put into scm other people will see that it is still a viable project. Then as I get time, I'll extract some of my code into some kind of example. What are the requirements for building with core and who do I contact t

Use wicketstuff-push and still have proper session timeout?

2010-06-07 Thread Early Morning
Hi All, We're currently using the wicketstuff-push project for notifications and the like. I added a TimerChannelService to our main Application class, and added a ChannelListener in our BasePage (using the user's username as the channel). However, the problem now is that the session never times

Closing modalWindow outside the dialog window by mouse click

2010-06-07 Thread rawe
Maybe a solution was already posted, I didn't find an answer ! I want to close a modal window just by mouse click outside the modal window (dialog). I tried some javascript code: var win = window.Wicket.Window; if (typeof(win.current) != "undefined") { win.current.close(); } P

Re: TabbedPanel with AjaxSelfUpdatingTimerBehavior

2010-06-07 Thread Decebal Suiu
When I switch to other tab I received a PageExpiredException: org.apache.wicket.protocol.http.PageExpiredException: No behavior listener found with behaviorId 0; Component: [MarkupContainer [Component id = panel]] Any idea how can I remove/stop the AjaxSelfUpdatingTimerBehavior? I created a visi

Re: drag and drop

2010-06-07 Thread Istvan Jozsa
My seqnums are persistently stored, when items are retrieved so the seqnum. I used models to pass and get item data: @Override public void populateItem(final Item item) { final ItemData itemData = item.getModelObject(); item.add(new MyLink("title", new DraggableModel(itemData) { @O

Re: TabbedPanel with AjaxSelfUpdatingTimerBehavior

2010-06-07 Thread Ernesto Reinaldo Barreiro
Why not "put" the behavior "outside" the tab and just do something if you are on the wight tab? Ernesto On Mon, Jun 7, 2010 at 3:07 PM, Decebal Suiu wrote: > > When I switch to other tab I received a PageExpiredException: > org.apache.wicket.protocol.http.PageExpiredException: No behavior listen

Re: TabbedPanel with AjaxSelfUpdatingTimerBehavior

2010-06-07 Thread Ernesto Reinaldo Barreiro
I meant "right tab" On Mon, Jun 7, 2010 at 3:54 PM, Ernesto Reinaldo Barreiro wrote: > Why not "put" the behavior "outside" the tab and just do something if > you are on the wight tab? > > Ernesto > > On Mon, Jun 7, 2010 at 3:07 PM, Decebal Suiu wrote: >> >> When I switch to other tab I received

Re: Guice & Wicket Guice Proxy

2010-06-07 Thread yaniv kessler
Nino, can you show the ClassWithDao code before the so called "ugliness" was introduced? On Sun, Jun 6, 2010 at 1:44 PM, nino martinez wael < nino.martinez.w...@gmail.com> wrote: > im still working on the quickstart.. So far I've been unable to > replicate.. I'll continue tomorrow > > 2010/6/5 ni

Re: [wicketstuff/wicket-contrib-jasperpreports] Is anyone supporting this?

2010-06-07 Thread Rodolfo Hansen
I think I have a couple of lines of code I can submit, And I can help you out in case you need any help. On Mon, Jun 7, 2010 at 8:16 AM, Charles Deal wrote: > Excellent. sf username: cdeal > > First things first then. If I get some patches put into scm other people > will see that it is still

strange error

2010-06-07 Thread Douglas Ferguson
Does anybody know what might cause this? org.apache.wicket.WicketRuntimeException:submitted http post value [radio-32719] for RadioGroup component [1:subPanel:linkForm:siteWide] is illegal because it does not contain relative path to a Radio componnet. Due to this the RadioGroup component canno

Re: [wicketstuff/wicket-contrib-jasperpreports] Is anyone supporting this?

2010-06-07 Thread Charles Deal
The first set of code I wanted to push back was just some housekeeping stuff. Use slf4j, reference wicketstuff-core, minor html changes. After that, I will look at anything that I did in my own code to customize it and see if i can push any of that back. What kind of changes did you have in mind

Re: Frustrating behavior ... same browser, same war, same tomcat version - different behavior!!!

2010-06-07 Thread Bryan Montgomery
Thanks - this is still puzzling me. This is a virtual machine. I did just try the war on another virtual machine and it worked as expected. I think I'm about to rebuild the server. I don't have any clustering, and not using apache, just hitting tomcat directly. One thing I noticed from the profili

Wicketstuff Jira

2010-06-07 Thread Charles Deal
I know that that Wicketstuff Jira was taken down and an email was sent in April saying it was temporary. Is there a timeline for its return? What shall we do in the meantime? I have a number of patches to submit for the inmethod-grid. I hesitate to commit them without review by someone else. I

[Wicketstuff / Inmethod-Grid] A handful of patches

2010-06-07 Thread Charles Deal
We've been using the grid for quite some time now and have accumulated a few changes to the codebase. I'd like to submit them for other users to review and discuss, in the hopes that they will make it into the wicketstuff codebase in the future. The following are brief descriptions of the attache

Re: Frustrating behavior ... same browser, same war, same tomcat version - different behavior!!!

2010-06-07 Thread Edward Zarecor
So it seems that Tomcat is unable to set a cookie to store the session id for the problematic domain as it will append it to the URL when all else fails -- you may also be able to configure this as the default behavior. Look at the differences between the hostname configurations comparing a workin

Re: [Wicketstuff / Inmethod-Grid] A handful of patches

2010-06-07 Thread Matej Knopp
Hi, I'm too busy to review the patches now, also they didn't get through as the mailing list doesn't allow attachments. Perhaps when JIRA works on wicket stuff again you can create issues in grid project and attache the patches there. -Matej On Mon, Jun 7, 2010 at 5:48 PM, Charles Deal wrote:

Re: [Wicketstuff / Inmethod-Grid] A handful of patches

2010-06-07 Thread Martin Grigorov
It seems the attachments are lost. Maybe you can paste them in some pastebin or something similar with a longer lifetime. On Mon, 2010-06-07 at 11:48 -0400, Charles Deal wrote: > We've been using the grid for quite some time now and have accumulated > a few changes to the codebase. I'd like to su

Re: [Wicketstuff / Inmethod-Grid] A handful of patches

2010-06-07 Thread Charles Deal
Hopefully, this will be acceptable. If anyone has a better suggestion for filesharing, I'd love to hear it as I haven't done too much in this arena and didn't know what the best choice would be. I'll gladly put them in a more accessible location. http://www.mediafire.com/?sharekey=f4d5eaacac4585

Re: [Wicketstuff / Inmethod-Grid] A handful of patches

2010-06-07 Thread nino martinez wael
Hi Matej I have a couple of patches too (adding the delete column and dropdownproperty column).. And one or two bug reports as well.. 2010/6/7 Matej Knopp : > Hi, > > I'm too busy to review the patches now, also they didn't get through > as the mailing list doesn't allow attachments. > > Perhaps

Re: Frustrating behavior ... same browser, same war, same tomcat version - different behavior!!!

2010-06-07 Thread fastone
Hi Recently, I have seen a similar issue, on one server apache was forcing compatibility view and on other its not doing that. So some js screwed up. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Frustrating-behavior-same-browser-same-war-same-tomcat-version-differ

Re: Guice & Wicket Guice Proxy

2010-06-07 Thread nino martinez wael
sure: public class ClassWithDao { public ClassWithDao() { InjectorHolder.getInjector().inject(this); } @Inject private transient PhoneDao phoneDao; public PhoneDao getPhoneDao() { return phoneDao; } public void setPhone

Re: CSS contest

2010-06-07 Thread nino martinez wael
Good question.. So of any of the contestees are looking, have you completed your styling and CSS? If so please put them up somewhere acessible, and if not please tell that too.. I will then try make time to host them (on running wicket examples), so we can vote... [1]=can't remember Josh of you

Re: [Wicketstuff / Inmethod-Grid] A handful of patches

2010-06-07 Thread Edward Zarecor
I'm pretty familiar with Jira and have upgraded a couple of instances because of the same vulnerability. If I could be of help getting Jira back on-line, let me know. Thanks. Ed. On Mon, Jun 7, 2010 at 1:22 PM, nino martinez wael < nino.martinez.w...@gmail.com> wrote: > Hi Matej > > I have a

Validation Messages

2010-06-07 Thread Brian Mulholland
This is probably a stupid question, but when I set up a validation like required or a custom validator, I want the "label" in the message to reflect a value other than the Id of the component. How can I set that to a value I'd prefer? Brian Mulholland

Re: Validation Messages

2010-06-07 Thread Igor Vaynberg
first call setlabel on your formcomponent with the value that you want to show up, then in the error message template use ${label} variable. -igor On Mon, Jun 7, 2010 at 10:54 AM, Brian Mulholland wrote: > This is probably a stupid question, but when I set up a validation > like required or a cu

Re: Guice & Wicket Guice Proxy

2010-06-07 Thread Jorge Rodrigez
Why phoneDao is transient ? Wicket-Guice injects a Serializable proxy and thus after deserialization the field will be non-null. On Mon, Jun 7, 2010 at 7:31 PM, nino martinez wael < nino.martinez.w...@gmail.com> wrote: > sure: > > public class ClassWithDao { > > public ClassWithDao() { >

Re: TabbedPanel with AjaxSelfUpdatingTimerBehavior

2010-06-07 Thread Decebal Suiu
Thanks, I will try. The problem with your approach is that in our application each tab is a "section" that can be added using spring framework (modular architecture). For example the dashboards tab has many widget panels, each widget panel is auto refreshable (different time for different widget).

Re: TabbedPanel with AjaxSelfUpdatingTimerBehavior

2010-06-07 Thread Ernesto Reinaldo Barreiro
I mean to have the timer attached to a component that is a sibling of the tab. You could register component as listener of this behavior and have the timer ask the components if the have changes to "repaint". I´m not sure but the problem you have might happen as follows: 1-When you switch tabs yo

AjaxSelfUpdatingTimerBehavior refreshing Entire Page

2010-06-07 Thread Ayodeji Aladejebi
Hi, I placed AjaxSelfUpdatingTimerBehavior on a component of an Application and rather than refresh the component only, its refreshing the entire page. its acting like i clicked on browser refresh button Pls what did I do wrong projectPostCont.add(new AjaxSelfUpdatingTimerBehavior(Duration.second

Re: [wicketstuff/wicket-contrib-jasperpreports] Is anyone supporting this?

2010-06-07 Thread Rodolfo Hansen
Changes I made on my own code I could push-back. Some helper code; auto-caching of compiled jrxml; and support for accepting PDF Form submitions... On Mon, 2010-06-07 at 11:07 -0400, Charles Deal wrote: > The first set of code I wanted to push back was just some housekeeping > stuff. Use slf4j

devolpment environment and externalizables html in a different server (url)

2010-06-07 Thread Fernando Wermus
Hi all, We would like to set up a deveolpment environment for some developers who are not in the same office. We think that externalizing the html in a different server could improve the independence between different free lancers and we don't need to set up the server for this case, just to ha

Re: [wicketstuff/wicket-contrib-jasperpreports] Is anyone supporting this?

2010-06-07 Thread nino martinez wael
youve been added. As for the requirement with core, I think you just need to add the project to the pom on core, I'd suggest looking at one of the projects thats already in there (so you can copy and paste).. regards Nino 2010/6/7 Charles Deal : > Excellent.  sf username: cdeal > > First things

Re: Guice & Wicket Guice Proxy

2010-06-07 Thread yaniv kessler
I agree with Jorge here and additionally, would like to ask what is the motivation to use InjectorHolder directly? Are you simply doing new ClassWithDao() somewhere in your code ? On Mon, Jun 7, 2010 at 9:21 PM, Jorge Rodrigez wrote: > Why phoneDao is transient ? > Wicket-Guice injects a Serial

Open Wicket project

2010-06-07 Thread Meaders, Jason (04210)
Good afternoon, I am looking for a senior developer with extremely strong wicket skills to assist a client of ours with a large implementation. The position will require working on site in Utah for 3-6 months. It could be a contract to hire position if someone were interested in that. Do you

Re: Guice & Wicket Guice Proxy

2010-06-07 Thread nino martinez wael
in my trying to fix the problem, I read about a bug regarding this. However it is probably fixed now (was an old thread).. 2010/6/7 Jorge Rodrigez : > Why phoneDao is transient ? > Wicket-Guice injects a Serializable proxy and thus after deserialization the > field will be non-null. > > On Mon, Ju

Re: Guice & Wicket Guice Proxy

2010-06-07 Thread nino martinez wael
Well as I manually create the the loadabledetachmodel which extends the ClassWithDao, it has to call injectorholder. I am not aware of any other method that can solve this.. 2010/6/8 yaniv kessler : > I agree with Jorge here and additionally, would like to ask what is the > motivation to use Injec

Re: AjaxSelfUpdatingTimerBehavior refreshing Entire Page

2010-06-07 Thread nino martinez wael
hmm why use ajax for that? Is it something you add during the interaction with the page or is it something that are always happing on the page? -Nino 2010/6/7 Ayodeji Aladejebi : > Hi, > I placed AjaxSelfUpdatingTimerBehavior on a component of an Application and > rather than refresh the componen

Re: strange error

2010-06-07 Thread nino martinez wael
well the submitted value does not match any of the id's for any of the radio components in that hierarchy. Or at least thats what I deduct.. Are you using ajax? 2010/6/7 Douglas Ferguson : > Does anybody know what might cause this? > > org.apache.wicket.WicketRuntimeException:submitted http post v