Update DropDownChoice with ModalWindow

2009-03-19 Thread PDiefent
Hi, In my panel I have a DropDownChoice with names. An AjaxLink opens a ModalWindow where I can enter a new name. After submitting the modal window, the new name is stored in the database and the new entry is added to the DropDownChoice contents. All this works fine, but one problem remains: The

Re: Update DropDownChoice with ModalWindow

2009-03-20 Thread PDiefent
It's definitely not a hashCode/equals problem, because when the page is rendered, the initial value of the dropDown is set correctly from the PropertyModel. After coming back from the modal window the DropDownChoice can't set the new value ... asfernandes wrote: Looks like lack of

Re: What is the best way to handle Undefined attribute name (wicket:id) warnings from Eclipse Ganymede?

2009-09-02 Thread PDiefent
This works fine for pages, but how can I manage it when working with panels - there are no html tags to put the DTD in ... wicket:extend div class=OptionsContainer wicket:id=options/div ... /wicket:extend Timo Rantalaiho wrote: On Mon, 02 Feb 2009, jWeekend wrote: We've been using:

Re: container based authentication

2009-10-27 Thread PDiefent
I've uploaded a little Eclipse Project without WEB-INF/lib/libraries - perhaps anybody can help to get it running ... PDiefent wrote: Hello, I try to secure my wicket appication with container based authentication. The problem is, that all users can log also if they don't have

Re: Resource leaks for CSS and IMG tags

2009-11-08 Thread PDiefent
No, it seems not to be this issue. The *.css files and the images are located in separate folders 'styles' and 'images' at the same location where the WEB-INF folder is located. There are no jar files including the resources. I've tested the work around but the problem still exists. Peter

Re: Update DropDownChoice with ModalWindow

2009-04-28 Thread PDiefent
Hi Vladimir, for the solution, look at http://www.nabble.com/Update-DropDownChoice-td22944165.html Peter Vladimir K wrote: PDiefent, I've came across similar problem. In my case, and what I'm discovered fits your case as well, the following is happening: ModalWindow is component based

Re: Tree Table - Update Model

2009-05-15 Thread PDiefent
Hi Matej, is it possible to post a little example? -Peter Matej Knopp-2 wrote: In order for tree to update items your model must fire treeNodesChanged event. -Matej -- View this message in context: http://www.nabble.com/Re%3A-Tree-Table---Update-Model-tp23549640p23554149.html Sent

Re: How to simulate browser back button?

2010-02-02 Thread PDiefent
It's not that simple! My IE doesn't accept the onclick in the tag. Is it poosible to run the code in the onSubmit method of a Wicket button? Erik van Oosten wrote: No problem: # back Peter Diefenthaeler wrote: Hallo Wicket users. is there an easy way to simulate the browsers

Re: Example for Combobox wanted

2010-02-10 Thread PDiefent
I don't understand. How do I create a textfield and a dropdown in one markup field. And how to synchronize the two contents? I didn't find any example in the wicket examples ... nino martinez wael wrote: Yes it's possible, just make a panel with a drop down and textfield, and ajax enable

Re: Ajax refresh problem with WebMarkupContainer and CSS class in DeploymentMode

2010-03-23 Thread PDiefent
The mail import did put the wrong tag in this message. In the original code the span tag is well formed. By the way, this will lead to an error in both modes - development and deployment mode ... Ilja Pavkovic-3 wrote: Hi, this looks wrong: / span] use Best Regards, Ilja

Re: Ajax refresh problem with WebMarkupContainer and CSS class in DeploymentMode

2010-03-23 Thread PDiefent
In development mode the browser shows a WICKET AJAX DEBUG Link after rendering the page. Maybe this causes the browser to show the contents of the table. If I hit the new button in my window, a modal window appears and the table contents also show up ... -- View this message in context:

Re: Ajax refresh problem with WebMarkupContainer and CSS class in DeploymentMode

2010-03-26 Thread PDiefent
Because it is urgent, I tried some changes without success. It seems to be the AjaxFallBackLink in the dataview, wich causes the table not to be shown when the page shows up. Is there any other possibility to show a modal window without an AjaxLink? Here is some code of the dataview with the

Re: Bug in StyleDateConverter?

2010-03-29 Thread PDiefent
An other strange behaviour of the StyleDateConverter(M-...): If you enter 12.12.12 you get 14.12.12 as a result ... With Format S it is OK and if you enter 12.12.2012 the result is also OK. Peter - To unsubscribe, e-mail:

Re: automatic palette sorting

2010-04-08 Thread PDiefent
Hi Robert, how did you call the new function. My IE always runs on error if I try to call the sort function ... Thanks, Peter robert.mcguinness wrote: in palette.js include the following function and call in Wicket.Palette.updateRecorder and Wicket.Palette.remove -- View this message

Re: Wicket + security, what are the best options? Spring Security reached almost all the way...

2010-05-07 Thread PDiefent
I have also problems integrating security into my Wicket project. I wanted to use simple authentication form the application server as I used many times before with JSF applications, but it didn't work. Spring security sounds very good, but since I don't use spring in my Wicket application I

Re: Wicket + security, what are the best options? Spring Security reached almost all the way...

2010-05-10 Thread PDiefent
Thanks for this fast respnse. I will have a deeper look at it. Actually I hoped to find a much more simple solution, because I wanted to avoid Spring in my application and only use it for authentication ... -- View this message in context:

Re: Wicket + security, what are the best options? Spring Security reached almost all the way...

2010-05-11 Thread PDiefent
where can I find the wicket-shiro-example stuff? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-security-what-are-the-best-options-Spring-Security-reached-almost-all-the-way-tp2068415p2173369.html Sent from the Wicket - User mailing list archive at

Re: DatePicker css

2010-07-22 Thread PDiefent
Hi, I also have a problem with the date picker CSS. The columns in the calendars GUI always resize according to the column width of the table in the background of the calendar GUI. Is it possible to isolate the calendar in a separate layer/div where no resizing of the calendar columns take place?

Tomcat 7 stylesheet problem

2010-08-06 Thread PDiefent
Hello, I tried to start my Wicket application with the new Tomcat 7.0.0 release and got a problem with the stylesheet path: Source HTML: ?xml version=1.0 encoding=UTF-8? html xmlns=http://www.w3.org/1999/xhtml; xmlns:wicket=http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd;

Re: Customize AjaxEditableLabel

2011-07-04 Thread PDiefent
Thanks for your fast response. Is there a QuickStart available how to implement it? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Customize-AjaxEditableLabel-tp3643409p3643435.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Customize AjaxEditableLabel

2011-07-04 Thread PDiefent
I tried it like AjaxEditableLabel does itself, but now I get the default input field plus the new fields in the panel! How do I erase the default text field? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Customize-AjaxEditableLabel-tp3643409p3643712.html Sent from

Re: Customize AjaxEditableLabel

2011-07-05 Thread PDiefent
Here are some code sniplets, perhaps you can see what's wrong - I definitely don't call super newEditor(). The next problem I will get is that the ContentEditorLabel closes when I click on an other field in the form. I would prefer a modal behaviour what means that I have to use the buttons to

Re: Error with tree component with 1.5.2

2011-11-01 Thread PDiefent
@Martin: It's on FireFox also. I don't thimk it's an serialization issue because it works fine with an older Wicket release. The error occurs on expanding and collapsing single nodes in the tree (inside the updateTree(target) method). -- View this message in context:

Re: Error with tree component with 1.5.2

2011-11-02 Thread PDiefent
The same problem occurs if I use a PackageResourceReference as an image model and try to update it in an AjaxLink. When erasing the toggleIcon component from the target.add method, the error doesn't occur. /** * @author Peter Diefenthäler * Link to toggle visibility of a dependent component. *

Re: Error with tree component with 1.5.2

2011-11-07 Thread PDiefent
One new hint concerning the error messages. If I use the Tree class instead of AbstractTree and set the linktype after constructing the tree, the message doesn't appear any more but the tree component slows down extremely! ... tm = createTreeModel(animals); tree = new

Re: Wicket 6 trees

2012-10-22 Thread PDiefent
Hi, this helped a lot. But I'm struggling with the link component of the node. If I'm using a StyledLinkLabel inside the newContentComponent method I get a link for the textual part of the node but there is no icon for toggling the subtree. Do you have a hint for me to solve this problem. Thanks a

Re: Wicket 6 trees

2012-10-23 Thread PDiefent
yes, i've overridden this method: @Override protected Component newContentComponent(String id, IModelSerializable model) { return new StyledLinkLabelSerializable(id, model) { private static final long serialVersionUID = 1L;

Problem with inmethod grid if double quotes are in strings

2013-07-08 Thread PDiefent
Hallo, I'm using the inmethod grid component in my web application. For the first time a double quote () appeares in my table data and now the grid is extended by an additional column containing the .toString() value of the column with the double quote characters in it. Now I can't change size and

Re: Problem with inmethod grid if double quotes are in strings

2013-11-27 Thread PDiefent
Hi Martin, while the WicketStuff team seems to be too busy to look at this issue I recognized that also AjaxFallBackLinks won't work if the model contains an attribute of the type String with a value containing double quotes. I guess that there are some more errors in the wicket code handling such

Re: Problem with inmethod grid if double quotes are in strings

2013-12-31 Thread PDiefent
Hi Martin, is there any alternative choice to inmethod grid. I'm searching for a more flexible grid component like FlexiGrid with more options to control paging and resizing the grid (perhaps jquery ...) Thanks for your support and a Happy and Successful New Year. Peter -- View this message in

Leaving page after closing modal results in browser pop up

2014-02-14 Thread PDiefent
Hi, with the current Wicket 6.13.0 I got a new problem. When leaving a page after openin a modal window results in a browser pop up where I have to confirm leaving the page. If I leave the page without opening the modal window the browser doesn't request a confirmation. Any suggestions? Thanks,

Re: Leaving page after closing modal results in browser pop up

2014-02-15 Thread PDiefent
Hi Ernesto, I didn't try because with former versions of Wicket the confirmation doesn't rise. The problem seams to exist since Wicket 6.13. -- View this message in context:

Re: Leaving page after closing modal results in browser pop up

2014-02-15 Thread PDiefent
Hi Paul, yes, this works. But why didn't I need it in former Wicket releases? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Leaving-page-after-closing-modal-results-in-browser-pop-up-tp4664471p4664484.html Sent from the Users forum mailing list archive at

StringResourceModel

2014-02-27 Thread PDiefent
Hi, I just ran into a problem generating a confirmation for a delete request. I'm using an AjaxCallListener to build the confirmation message: public class AjaxConfimListener extends AjaxCallListener { private static final long serialVersionUID = 1L; private final LinkIcon icon;

Re: Show html help page from dropdown

2014-07-16 Thread PDiefent
I only want to open a html page in a new browser window or tab, no modal popup. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Show-html-help-page-from-dropdown-tp424p426.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Show html help page from dropdown

2014-07-16 Thread PDiefent
Perfect, that's what I searched for. Thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Show-html-help-page-from-dropdown-tp424p428.html Sent from the Users forum mailing list archive at Nabble.com.

Re: AjaxFallbackLink - target NULL

2015-08-09 Thread PDiefent
Hi Sven, I don't get any messages in the browsers console. It is a Java exception and every AjaxFallbackLink is affected: 22:14:59.614 [http-nio-8037-exec-3] ERROR org.apache.wicket.DefaultExceptionMapper.mapUnexpectedExceptions(DefaultExceptionMapper.java:170) - Unexpected error occurred

Re: Palette - AJAX functionality

2016-04-27 Thread PDiefent
Hi Sven, thanks for your reply. Please find a QickStart attached. Peter palette.7z -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Palette-AJAX-functionality-tp4674433p4674453.html Sent from the

Palette - AJAX functionality

2016-04-26 Thread PDiefent
Hello, I've migrated my Wicket 6 application to Wicket 7 and I got some problems with a modal window containing a palette component. In Wicket 7 no updates are visible between the two lists (available/selected). If I try to move one entry to the opposite list there is only a short flicker but no

Re: Palette - AJAX functionality

2016-04-27 Thread PDiefent
Hi Sven, thanks for your help - looks promising now! Now I only have to improve the CSS ... Peter -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Palette-AJAX-functionality-tp4674433p4674460.html Sent from the Users forum mailing list archive at Nabble.com.