Re: Let us list the frameworks and tools we use together with Wicket!

2008-08-01 Thread Paul Logasa Bogen II
I develop in Eclipse with SVN for source control. I user FFX3 with WebDeveloper Toolbar to debug CSS and Venkman to debug js (although if someone knows of a better js debugger please tell me). My project uses MySQL for the backend, does data preprocessing with Mallet, password encryption using

Re: Let us list the frameworks and tools we use together with Wicket!

2008-08-01 Thread Paul Logasa Bogen II
Ah, sorry about that I saw the YUI stuff when I was debugging something and assumed that it was a wrapper :-P plb Matej Knopp wrote: On Fri, Aug 1, 2008 at 2:23 PM, Paul Logasa Bogen II [EMAIL PROTECTED] wrote: I develop in Eclipse with SVN for source control. I user FFX3 with WebDeveloper

Re: Wrap Headers in DataTable to new line?

2008-07-31 Thread Paul Logasa Bogen II
nanotech wrote: Q1: How do I make Header in DataTable to wrap to new line. I am putting a newline character but its not woorking. columns.add(new PropertyColumn(new Model(This is a very very very long header that does not wrap), sortProperty, propertyExpression)); How do you display a line

Re: How to open a Modal Window by clicking a button

2008-07-30 Thread Paul Logasa Bogen II
I believe that you really do need it to be a AjaxLink... but if you can send the code to the list we can see if there are any other issues. plb a_godin wrote: Hey, I'm new to wicket and I'm completing a web app that was left behind by someone else. I have to take a functionality (opening a

Re: Wicket example on Ajax - Modal window not working

2008-07-28 Thread Paul Logasa Bogen II
The .java and .html in your project would be far more useful then the final .html emitted by Wicket. Thanks, plb mabel25 wrote: Hi, I have attached my source code and the error window. Thanks! Pills wrote: We need more info please paste your code and tell us where is the error

Re: Strange behavior with inMethod DataGrid inside a Panel inside a ModalWindow

2008-07-28 Thread Paul Logasa Bogen II
more info on that problem and then post it as a separate thread. Thanks, plb Paul Logasa Bogen II wrote: Ok here is a very stripped down version that I think is about as minimal as possible. The problem occurs when you click the open link, close the modal window and the click the open link again

Re: Best way to implement DataTable updatable via Ajax

2008-07-28 Thread Paul Logasa Bogen II
the inMethod DataGrid is excellent. plb nanotech wrote: please help,Anyone? --- Hi All, I have a Save Form where user should be able to add/save new records and should be able to view feedback if there are any errors. In short, When user loads up the page he sees a

Re: Best /Correct way to update DataTable via Ajax

2008-07-28 Thread Paul Logasa Bogen II
In the wicket-stuff repository is a YUI DataGrid wrapper for Wicket. It is a very robust Data control that supports ajax based updates. plb nanotech wrote: Hi Paul, Sorry could not understand your answer. Can you please elaborate? RG Paul Logasa Bogen II wrote: the inMethod DataGrid

Re: Strange behavior with inMethod DataGrid inside a Panel inside a ModalWindow

2008-07-25 Thread Paul Logasa Bogen II
it to me directly (there's no issue tracker for grid yet)? -Matej On Fri, Jul 25, 2008 at 5:34 AM, Paul Logasa Bogen II [EMAIL PROTECTED] wrote: These are the primary involved java source files, let me know if you'd like to see any others. plb CollectionDataModel.java -- http://pastebin.ca

Re: Strange behavior with inMethod DataGrid inside a Panel inside a ModalWindow

2008-07-25 Thread Paul Logasa Bogen II
I looks correct in IE6. I also tried disabling my CSS, but that didn't help either. plb Paul Logasa Bogen II wrote: I went ahead and created a bare minimal project to illustrate the behavior, but It doesn't occur in the minimal project. I've gone over everything and I just can't seem

Re: Strange behavior with inMethod DataGrid inside a Panel inside a ModalWindow

2008-07-25 Thread Paul Logasa Bogen II
I have a version of my code without my DB stuff that exhibits the problem still. If anyone else is interested (other than Matej) let me know and I can send you a copy or post it to the web. plb Paul Logasa Bogen II wrote: I looks correct in IE6. I also tried disabling my CSS, but that didn't

Strange behavior with inMethod DataGrid inside a Panel inside a ModalWindow

2008-07-24 Thread Paul Logasa Bogen II
and the first time I manipulate the DataGrid or the ModalWindow. Is there someway I can force the DataGrid to redraw when I show the Modal? update() doesn't work. Thanks, Paul Logasa Bogen II - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Strange behavior with inMethod DataGrid inside a Panel inside a ModalWindow

2008-07-24 Thread Paul Logasa Bogen II
branch. plb Matej Knopp wrote: We use grid in modal window all the time. Can you be more specific about the setup (browser, grid version, wicket version)? -Matej On Thu, Jul 24, 2008 at 10:56 PM, Paul Logasa Bogen II [EMAIL PROTECTED] wrote: Howdy, First of I'd like to say that I think

Re: Strange behavior with inMethod DataGrid inside a Panel inside a ModalWindow

2008-07-24 Thread Paul Logasa Bogen II
I added a second entry to my database that backs the DataGrid and I still see the same problem, but now when I click a sort (etc) to get it to show only the first item shows. plb Paul Logasa Bogen II wrote: Sure, no problem, I didn't want to spam the list with too much info if I didn't need

Re: Strange behavior with inMethod DataGrid inside a Panel inside a ModalWindow

2008-07-24 Thread Paul Logasa Bogen II
These are the primary involved java source files, let me know if you'd like to see any others. plb CollectionDataModel.java -- http://pastebin.ca/1082263 CollectionDataSource.java -- http://pastebin.ca/1082264 LoadPanel.java -- http://pastebin.ca/1082266 Paul Logasa Bogen II wrote: I added