Re: modal window with iframe - ajax refresh on parent page

2009-03-06 Thread geke
There is an workaround for the problem. See http://www.dooriented.com/blog/category/programming/. There is a topic "Wicket - Ajax like file upload on a modal window". jensiator wrote: > > Hi geke > Have you solved your problem? I also have a ModalWindow with my own >

Re: Hot deployment / Server restart

2008-10-30 Thread geke
Oct 30, 2008 at 10:11 AM, geke <[EMAIL PROTECTED]> wrote: >> >> My IDE is eclipse-jee-ganymede. >> Where can I find such information? >> >> >> >> martin-g wrote: >>> >>> Wicket doesn't control the lifecycle of the web container. >&

Re: Hot deployment / Server restart

2008-10-30 Thread geke
My IDE is eclipse-jee-ganymede. Where can I find such information? martin-g wrote: > > Wicket doesn't control the lifecycle of the web container. > There is something else that triggers the restart (maybe the IDE ?!). > > On Thu, 2008-10-30 at 01:46 -0700, geke wrote: &g

Hot deployment / Server restart

2008-10-30 Thread geke
Hi, on every change in my HTML or Java file the tomcat 6.0 server restarts completely, for example if I change the css definitions. This is annoying and primarily time-consuming. Is there a possibility that the server only restarts, if for example the method signature in the java file or a tag w

Re: Need to change the image in AJAX TREE

2008-10-30 Thread geke
see the Class http://www.nabble.com/file/p20242569/WicketDmsTree.java WicketDmsTree.java newbie_to_wicket wrote: > > i've to change the Ajax tree images folder open and folder close with > other images. > > can any body let me know once how do we do this by programmatically in > wicket. >

Re: How to add nodes to a tree using Ajax

2008-07-04 Thread geke
so on. the plus image can you maybe handle with the onJunctionLinkClicked method. GeKe Kai Schubert-Altmann wrote: > > Hello, > > 2. Thanks, but your file contains only an empty class. > > 3. If the tree has ever 2000 nodes, it lasts maybe a little bit to long to > get

Re: How to add nodes to a tree using Ajax

2008-07-03 Thread geke
(). GeKe Kai Schubert-Altmann wrote: > > HI everybody > > I solved the first problem by my own by adding the following method to the > tree: > > public DefaultMutableTreeNode getSelectedNode() { > Object selected = null; > try { > selected = this.g

Re: How to add nodes to a tree using Ajax

2008-06-27 Thread geke
try this code: fileTree = new LinkTree(); TreeNode existingTreeNode = ...; DefaultMutableTreeNode newTreeNode = new DefaultMutableTreeNode(object); DefaultTreeModel model = (DefaultTreeModel)fileTree.getModelObject(); model.insertNodeInto(newTreeNode, treeNode, 0); fileTree.updateTree(target);

modal window with iframe - ajax refresh on parent page

2008-06-13 Thread geke
I have a webpage with a div element. In the div element is a table, so I can refresh the table via ajax. Also there is a modal window, on which a iFrame is inside. After closing the modal window, I like to refresh the table in the div element in the parent page. Therefore I use the callback functi

New Window/Tab Scope

2008-06-04 Thread geke
Hi, I need a scope for every new window/tab, where I can put some data. I read, that is in the wishlist for wicket 1.5, but are there any best practices or suggestions? Kind regards, Georg -- View this message in context: http://www.nabble.com/New-Window-Tab-Scope-tp17648112p17648112.html S

Re: After Upload File via ModalWindow and IFrame, the TreeModels UserOject Attributes are null

2008-05-12 Thread geke
no one has a idea? -- View this message in context: http://www.nabble.com/After-Upload-File-via-ModalWindow-and-IFrame%2C-the-TreeModels-UserOject-Attributes-are-null-tp16936673p17186772.html Sent from the Wicket - User mailing list archive at Nabble.com. --

Re: After Upload File via ModalWindow and IFrame, the TreeModels UserOject Attributes are null

2008-04-30 Thread geke
the modal > page content, will that stop messing up the linktree? > > can you provide more code? > > On Mon, Apr 28, 2008 at 2:15 PM, geke <[EMAIL PROTECTED]> wrote: > >> >> Hello, >> >> I´m upload a file via a modal window and an iFrame. It`s describe

Re: Form submit with a FileUploadField appears not to work in a Modal Window

2008-04-29 Thread geke
There is an example. http://www.dooriented.com/blog/2008/04/23/wicket-ajax-like-file-upload-on-a-modal-window/ -- View this message in context: http://www.nabble.com/Form-submit-with-a-FileUploadField-appears-not-to-work-in-a-Modal-Window-tp16795627p16976741.html Sent from the Wicket - User mail

After Upload File via ModalWindow and IFrame, the TreeModels UserOject Attributes are null

2008-04-28 Thread geke
Hello, I´m upload a file via a modal window and an iFrame. It`s described in http://www.dooriented.com/blog/2008/04/23/wicket-ajax-like-file-upload-on-a-modal-window. Also I have a LinkTree on my site. But after closing the modal window, the tree models userObject has a reference, but the attrib