Re: wicket-like framework to complement wicket?

2008-08-22 Thread Nino Saturnino Martinez Vazquez Wael
Great:) No great names pop to my mind now:( francisco treacy wrote: sure! when i'm finished with neodatis integration, i'll open source the whole thing (really small though). we could then create a wicket-iolite archetype. i'll check if all the dependencies are available in public maven repos.

Re: Mounting dynamic content

2008-08-22 Thread Martin Makundi
Have you tried to download your content from a bookmarkable page that is mounted as /Filename.ext? ** Martin 2008/8/21 mfs [EMAIL PROTECTED]: Can you be elaborate more, a sample would be really helpful, just to let u know i am using a DynamicWebResource since i am generating the pdf on the

Re: Inline-pdf generated on the fly using DynamicWebResource - Showing Custom FileName on File - Save As

2008-08-22 Thread Nino Saturnino Martinez Vazquez Wael
Hi I once did something similar, and after a lot of work trying to fix it so it were consistent came to the conclusion that on that point too browsers are different, we wanted it to open a doc inline. mfs wrote: Guys, I am struggling with an issue relating to PDF displayed inline on a

Re: Inline-pdf generated on the fly using DynamicWebResource - Showing Custom FileName on File - Save As

2008-08-22 Thread Martin Makundi
The problem i am facing is with the usage of File-SaveAs or Adobe-Toolbar - Save Icon when trying to save the file. Basically on clicking any of the above the file-name shown by-default on the Save-As dialog box is the context-path (the part before the url-parameters) i.e. mypage in case the

Re: Document is null or not an object after PDF from ModalWindow

2008-08-22 Thread Federico Fanton
On Fri, 22 Aug 2008 05:43:28 +0300 Timo Rantalaiho [EMAIL PROTECTED] wrote: On Thu, 21 Aug 2008, Federico Fanton wrote: Should I open a JIRA issue? Yes please, with all this information and the quickstart attached. Thanks :) Here it is https://issues.apache.org/jira/browse/WICKET-1798

Re: Wicket merchandise?

2008-08-22 Thread Nino Saturnino Martinez Vazquez Wael
Daan van Etten wrote: I really don't want to get into a 'design by committee' thing. BTW: I've no idea about trademark or copyright issues. I like to see a simple way for people to support Wicket or Apache, financially or by promoting it. Some merchandize may help with both, at least a bit

Re: Unable to find component with id

2008-08-22 Thread btakacs
Hi John Patterson wrote: Basically, every wicket:id in your html files must have a component in your java file and visa versa I think, there is a mutual mapping between html and java. ul wicket:id = menu -- MenuView view = new MenuView(menu, menu); add(view); // in HeaderPanel.java

CSS with media print applied on AJAX panel replacement on wicket 1.3.3

2008-08-22 Thread Magnus Forsberg
Hi all! In my application I'm doing panel replacement with ajax and one of the panels have a head contribution with some print-related css. However, when loading the panel the print-related css is applied. If I'm having the print-related css in the originating page (i.e the page responsible for

Re: [offtop] need help with eclipse and m2eclipse

2008-08-22 Thread Nino Saturnino Martinez Vazquez Wael
Yeah thats my preferred approach also. Timo Rantalaiho wrote: On Thu, 21 Aug 2008, Oleg Taranenko wrote: Eclipse Ganymede JEE (3.4) + m2eclipse 0.9.5 works perfect! I can now under eclipse launch mvn jetty:run and comfortable debugging all sources including the wicket core. One

Re: Unable to find component with id

2008-08-22 Thread btakacs
Hi It seems that there is some kind of fromatting in place which is confused because of my code fragments. I've just read the help. So, the mapping between components: ul wicket:id = menu -- MenuView view = new MenuView(menu, menu); add(view); // in HeaderPanel.java -- item.add(new

Re: [offtop] need help with eclipse and m2eclipse

2008-08-22 Thread Martijn Dashorst
On Fri, Aug 22, 2008 at 5:04 AM, Timo Rantalaiho [EMAIL PROTECTED] wrote: I don't really see why would you want to have Maven in between your IDE and the servlet container. I Agree. Just use the wicket quickstart archetype generator and look at the Start class in the src/test/java directory

Re: [offtop] need help with eclipse and m2eclipse

2008-08-22 Thread Maarten Bosteels
Hi, On Fri, Aug 22, 2008 at 9:49 AM, Martijn Dashorst [EMAIL PROTECTED] wrote: On Fri, Aug 22, 2008 at 5:04 AM, Timo Rantalaiho [EMAIL PROTECTED] wrote: I don't really see why would you want to have Maven in between your IDE and the servlet container. I Agree. Just use the wicket

Re: CSS with media print applied on AJAX panel replacement on wicket 1.3.3

2008-08-22 Thread Martin Makundi
How do you know it is not applied? At least in Firefox there is a setting when printing 'ignore css' or something.. ** Martin 2008/8/22 Magnus Forsberg [EMAIL PROTECTED]: Hi all! In my application I'm doing panel replacement with ajax and one of the panels have a head contribution with some

Re: Unable to find component with id

2008-08-22 Thread btakacs
I have just tried to change the markup to: ul wicket:container wicket:id = menu li /li/wicket:container /ul but it has the same result. And then I tried to remove that element from the markup: ul wicket:container wicket:id = menu li something /li/wicket:container /ul

Re: Unable to find component with id

2008-08-22 Thread Martijn Dashorst
1. you are repeating the UL tag instead of the LI tag. You should use li wicket:id=menu, but I'd recommend to rename the component to menuitem to make it more clear 2. you don't have child components defined in the markup for each element. This is necessary. ul li wicket:id=menua href=#

Re: Inline-pdf generated on the fly using DynamicWebResource - Showing Custom FileName on File - Save As

2008-08-22 Thread Ned Collyer
Firstly - sorry for my initial post - i didnt see the inline bit in the subject - so I wasn't very helpful. You could also use a MixedParamUrlCodingStrategy and mount the page as http://[host-name]/wap/[id]/[filename] - then you can put in a check that the filename matches the ID (ie, its a

Transactions won´t work?

2008-08-22 Thread Markus
Hi all, I am using Spring, Hibernate @ MySQL with InnoDB-Tables with a JDBC-Spy in between and Wicket. Deactivating the Spy changes nothing. I am using following Dialect: property name=dialectorg.hibernate.dialect.MySQL5InnoDBDialect/property. My SpringConfig-Part: bean

AJAX refresh of ListView in Form

2008-08-22 Thread John Patterson
Hi, I have a ListView in a table that can have rows dynamically added with AJAX. When I add a row and enter a value, then add another row the first row is reset to an empty value. Do I need to submit the form for each AJAX request to send the new values to the server? Thanks, JD -- View this

Re: Transactions won´t work?

2008-08-22 Thread James Perry
How are you configuring Spring within Wicket? Correct me if I'm wrong but the transactional weaving that you are trying to advise will only work if Spring can see them in its object factory (i.e. constructed within spring) - which I suspect is the case. Perhaps having spring managed service beans

Re: wicket-like framework to complement wicket?

2008-08-22 Thread francisco treacy
i opened up a googlecode account, where i'll be hosting the project. i need to write some more tests, sort out a configuration issue and polish it up. then i will do the first commit. btw i chose a random name: gluw (pronunced 'glue' and meaning sth like glue for wicket) because it's all about

Re: Wicket-phonebook problem with cleaning fields in FilterToolbar

2008-08-22 Thread Łukasz Lipka
Can you show what did you change in your code that it start to work? Best regards Łukasz Lipkaa 2008/8/21 Kai Mutz [EMAIL PROTECTED] Clear button of FilterForm is set as defaultFormProcessing false by default. Change it to true. See

RE: Transactions won´t work?

2008-08-22 Thread Markus
Correct me if I'm wrong but the transactional weaving that you are trying to advise will only work if Spring can see them in its object factory (i.e. constructed within spring) - which I suspect is the case. Perhaps having spring managed service beans and proxy those in wicket using the

AbstractDefaultAjaxBehavior.findIndicatorId()

2008-08-22 Thread John Krasnay
I have a small request regarding AJAX indicators. It's sometimes awkward to implement an AJAX indicator the standard way, by implementing IAjaxIndicatorAware, since it forces me to use an explicit class where I otherwise would have used an anonymous inner class. I actually have this code in one

Re: Transactions won´t work?

2008-08-22 Thread James Carman
That's not the only way it will work. You can use an aspect to weave that behavior into your class also. On Fri, Aug 22, 2008 at 8:26 AM, Markus [EMAIL PROTECTED] wrote: Correct me if I'm wrong but the transactional weaving that you are trying to advise will only work if Spring can see them in

Exception when parsing a xml file, which doesn't follow properties.dtd

2008-08-22 Thread Liz Huber
Hi wicket experts, I'd like to store somedata in xml files, which are parsed by my Wicket application later tocreate the corresponding images and links. I'd like to use the wicket resource mechanism, as it offers the appropriate xml file according to style and language.      

RE: Wicket-phonebook problem with cleaning fields in FilterToolbar

2008-08-22 Thread Kai Mütz
Lukasz Lipka mailto:[EMAIL PROTECTED] wrote: Can you show what did you change in your code that it start to work? Just clear.setDefaultFormProcessing(true); But this seems to be fixed in newer versions. So I have no clue what's the problem. Sorry, Kai

[IE7] Shrinked popup calendar when inside a table

2008-08-22 Thread Federico Fanton
Hey everyone! Another IE7-related weird problem, I'm sorry ^^; I found that if I use a DateField inside a table, when I click the calendar icon (17) using IE7, the calendar pops up shrinked in width, even if there's plenty of screen space.. When I close the popup and re-open it, it shows up

Re: I have some Wicket based opportunities/jobs if you're interested.

2008-08-22 Thread Rodolfo Hansen
Hi Wayne, I am curious about your project. If you want, please contact me personally so we can see if it is a good match. On Thu, Aug 21, 2008 at 1:27 PM, Eduardo Sasso [EMAIL PROTECTED]wrote: Hi Waine, I've bumped into your email accidentally and I've got pretty interested in it. I

Re: I have some Wicket based opportunities/jobs if you're interested.

2008-08-22 Thread Jeremy Thomerson
Folks, Wayne's email address is in the headers of the first message. If you are interested in the job, it would probably be in everyone's best interest if you replied directly to him ([EMAIL PROTECTED]) rather than the entire list. Replies here automatically go to everyone. -- Jeremy

Re: CSS with media print applied on AJAX panel replacement on wicket 1.3.3

2008-08-22 Thread Jeremy Thomerson
I haven't had this problem before, but my first thought would be that the 'media=print' is getting stripped when the AJAX reply comes in and it's added to the page. Have you looked at the HTML Wicket is sending back (in the AJAX debug) or used Firefox to view the generated HTML after the AJAX

Another Brix Project...

2008-08-22 Thread James Carman
http://blog.playlouder.com/2008/03/11/about-brix/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Form with tabbed panel: Tracking changes

2008-08-22 Thread Kai Mütz
Hi, I have a tabbed panel within a form. I have overwritten the newlink method and return a submitlink instead of regular link in order to keep the form content. Everything works fine for far. While using these submitlinks I want to differentiate if the user has made some changes within the tab

Re: Form with tabbed panel: Tracking changes

2008-08-22 Thread Nino Saturnino Martinez Vazquez Wael
Look at Ivisitor and add one to the form, that could add it for you... I think theres a example pdf on jweekends homepage... http://www.jweekend.com/dev/ArticlesPage/ London Wicket - Al's Forms With Flair Someone did'nt care to mount articles as shared resources I see. Kai Mütz wrote: Hi,

Display images from database

2008-08-22 Thread hinkel
Hi folks, I am new to Wicket and have a simple questions to the experts: I have images stored in a databse and want to display them on a webpage. I've searched each and everything on the web but did not find a working solution. It seems that the source of the much recommend cdapp-application is

Re: [offtop] need help with eclipse and m2eclipse

2008-08-22 Thread Peter Thomas
I use NetBeans and have written a custom Maven plugin that converts a POM to a NetBeans project, works well with the Wicket quickstart, Start class, hot-deploy and all. Also generates a build.xml file for those who miss using Ant instead of Maven. No Maven IDE plugin required. Details here:

Re: Another Brix Project...

2008-08-22 Thread Patrick Angeles
Wow. Thanks for the heads up. We'll email those guys and let them know of our project just to make sure we're not working on two very similar things at once. jwcarman wrote: http://blog.playlouder.com/2008/03/11/about-brix/

Re: AJAX refresh of ListView in Form

2008-08-22 Thread Ritesh Trivedi
John, Whole idea behind AJAX is not to have to do that - just send the incremental changes to the server and server should be able to identify such request and do the needful. So in your AJAX request handler, you need to get the new values and add them, however you need to. Its that simple.

Re: Mounting dynamic content

2008-08-22 Thread mfs
Hi Martin, Actually the issue is that i want to have a [custom-file-name].pdf declared based on the pdf being generated, so if mount a page with a certain name (i am not sure but) i would have to use the same name as specified for mounting. Secondly i have question that when u talk about

Re: Inline-pdf generated on the fly using DynamicWebResource - Showing Custom FileName on File - Save As

2008-08-22 Thread mfs
Hi Martin, Actually i had some questions/clarifications as i posted in my other post, and i.e. that i want to have a [custom-file-name].pdf declared based on the pdf being generated dynamically, so if i mount a page with a certain name (i am not sure but) i would have to use the same name as

Re: Display images from database

2008-08-22 Thread Nino Saturnino Martinez Vazquez Wael
hmm, use an image resource. Below code could probably get beautified a bit.. And you might want to use shared resources if its something common.. form.add(new NonCachingImage(currentPicture, new AbstractReadOnlyModel() { @Override public

Re: Wicket Stuff devs - teamcity is open for registration

2008-08-22 Thread svenmeier
Time to do some cleaning up: username: svenmeier project: wicketstuff-prototype Thanks Sven Martijn Dashorst wrote: We have moved our build server to run on teamcity. Our previous software was not up to par. I have picked Teamcity because it was the quickest to setup securely at 1am in

validation

2008-08-22 Thread Scott Swank
I have a form where every FormComponent is wrapped by a border that contains a feedback panel. The feedback panels each use a ContainerFeedbackMessageFilter to only display their messages. Everything works as fine. We then have ontab AjaxFormComponentUpdatingBehaviors to populate the feedback --

Re: session jumping?

2008-08-22 Thread rmorrisey
I'm working on the same project as Chuck, trying to help debug the session jumping. Here's a little more information: -Upgrading to 1.3.4 did not fix the issue -The session ID seems to be constant according to whichever PC initiated the request -A few example cases where we've seen the error: 1)

Re: session jumping?

2008-08-22 Thread James Carman
What are you using to login? Is it Acegi/Spring Security? Are you using the appropriate strategy (thread-local) for keeping track of the currently logged in user? On Fri, Aug 22, 2008 at 9:14 PM, rmorrisey [EMAIL PROTECTED] wrote: I'm working on the same project as Chuck, trying to help debug

Re: AJAX refresh of ListView in Form

2008-08-22 Thread John Patterson
Ritesh, you cannot send incremental changes to a ListView. The problem is outlined here: http://cwiki.apache.org/WICKET/how-to-repaint-a-listview-via-ajax.html Ritesh Trivedi wrote: John, Whole idea behind AJAX is not to have to do that - just send the incremental changes to the