write translated messages in renderhead

2007-09-05 Thread Marieke Vandamme
Hello, With new 1.3beta3 release I changed all the entries from StringResourceModel to ResourceModel to avoid the warning 'Tried to retrieve a localized string for a component that has not yet been added to the page.' (I still get this warning when using wicket:message key=/ tag.. but I guess

Re: write translated messages in renderhead

2007-09-05 Thread Marieke Vandamme
() + ) + ';; On 9/5/07, Marieke Vandamme [EMAIL PROTECTED] wrote: Hello, With new 1.3beta3 release I changed all the entries from StringResourceModel to ResourceModel to avoid the warning 'Tried to retrieve a localized string for a component that has not yet been added to the page

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-09-14 Thread Marieke Vandamme
Hello, I had the same problem with tinymce in internet explorer. I was glad to read this thread and downloaded the latest sources from CVS. But now I get a firefox error saying : tinyMCE.baseURL has no properties (tiny_mce_src.js:88). Am i the only one getting this error or is it a common

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-09-14 Thread Marieke Vandamme
Well ... it didn't. And the strangest thing is that when working with the previous CVS sources from tinymce, it does.. Can it have something to do with those changes for internet explorer or ajax? I can go back to the previous release, but then internet explorer doesn't work... Marieke Vandamme

TinyMCE : multiple textarea's with TinyMCEBehaviour

2007-09-19 Thread Marieke Vandamme
Hello, I have 2 textfields who each have the TinyMCEBehaviour, but the first one is simple and the other advanced (so they each have a different TinyMCESettings in constructor). This results in getting 4 tinyMCE editing boxes on my page, and the problem is because the same 'editor_selector' is

Dojo tooltip disappears on click

2007-11-05 Thread Marieke Vandamme
Hello, When clicking the span with the widgetId on it, the tooltip disappears.. I don't know if this is common behavior, but i want to get ride of it. Do i need to do something extra on the onclick? Thanks for the replies ! -- View this message in context:

wicket-1055: How to implement new functionality

2008-12-16 Thread Marieke Vandamme
Hello, I was looking at the things that changed in 1.4rc1, and the following looked interesting to me: https://issues.apache.org/jira/browse/WICKET-1055 = Add Radio to RadioGroup, but Radio doesn't need to be inside RadioGroup in the markup. The patch is suggesting that there will be a new

Nested forms : don't process inner form when outer form is submitted

2009-02-09 Thread Marieke Vandamme
Hello, I've been reading a lot about nested forms and what should happen with the inner forms when the outer form gets submitted. But I didn't found out how you can implement what i'm trying: I have inner form with some RequiredTextFields on it. These are required when the inner form is

SubmitLink only calls form.onsubmit with 1.4-rc2

2009-02-09 Thread Marieke Vandamme
Hello, I already use 1.4-rc2 for my projects, and found some error within the SubmitLink. Form form = new Form(webform){ public void onSubmit(){ System.out.println(on form submit); } }; add(form); form.add(new

Re: Nested forms : don't process inner form when outer form is submitted

2009-02-10 Thread Marieke Vandamme
help!! Marieke. igor.vaynberg wrote: try letting your inner form implement IFormVisitorParticipant. another way is to override isrequired() and check for the submitting component. -igor On Mon, Feb 9, 2009 at 3:17 AM, Marieke Vandamme ma...@tvh.be wrote: Hello, I've been reading

NotSerializableException: java.util.RandomAccessSubList

2008-08-21 Thread Marieke Vandamme
Hello, I'm using a rather complex CompoundPropertyModel on my Form. That Form contains multiple Panels that also use the same CompoundPropertyModel. So I can't post any source code, but I hope my stacktrace will be enough. I also found a rather simular problem on the jira site, but not for

Re: NotSerializableException: java.util.RandomAccessSubList

2008-08-21 Thread Marieke Vandamme
(myBeansId))) JD The issue is due to how wicket saves pages to disc in order to support the back button. Marieke Vandamme wrote: Hello, I'm using a rather complex CompoundPropertyModel on my Form. That Form contains multiple Panels that also use the same CompoundPropertyModel. So I

RadioGroup lost value after onError form

2009-03-26 Thread Marieke Vandamme
Hello, consider example underneath. Form with DateTextField and RadioGroup. When an incorrect date is entered in the TextField, the value choosen in radiogroup is lost. When correct date is entered, the value is shown correct in radiogroup. Is this an error in my code? Or a bug? I'm using

Re: RadioGroup lost value after onError form

2009-03-30 Thread Marieke Vandamme
Hello, Can't anyone help me with this? Or do I just report a jira bug for this? THANKS! Marieke Vandamme wrote: Hello, consider example underneath. Form with DateTextField and RadioGroup. When an incorrect date is entered in the TextField, the value choosen in radiogroup is lost

Re: authorizing a tab

2009-04-07 Thread Marieke Vandamme
I think I had the same problem a while ago. Look at the solution in discussion underneath: http://www.nabble.com/TabbedPanel-%2B-authorization-strategy-td13949910.html#a13965618 Linda van der Pal wrote: I'm trying to disable a tab in a TabbedPanel based on authorization. I'm using

add id to body with onComponentTag?

2009-06-25 Thread Marieke Vandamme
Hello, I'm using the following setup with markup inheritance ParentPage.java extends WebPage ChildPage.java extends ParentPage.java In the constructor of my ParentPage I want the following: public Parent(String bodyId) Then when the html is written, this id should be added to the

add id to body with onComponentTag?

2009-06-25 Thread Marieke Vandamme
Hello, I'm using the following setup with markup inheritance ParentPage.java extends WebPage ChildPage.java extends ParentPage.java In the constructor of my ParentPage I want the following: public Parent(String bodyId) Then when the html is written, this id should be added to the

Re: add id to body with onComponentTag?

2009-06-29 Thread Marieke Vandamme
Can't anyone help me with my problem? Many thanks in advance ! Marieke Marieke Vandamme-2 wrote: Hello, I'm using the following setup with markup inheritance ParentPage.java extends WebPage ChildPage.java extends ParentPage.java In the constructor of my ParentPage I want

Re: add id to body with onComponentTag?

2009-06-30 Thread Marieke Vandamme
in advance ! Marieke Marieke Vandamme-2 wrote: Hello, I'm using the following setup with markup inheritance ParentPage.java extends WebPage ChildPage.java extends ParentPage.java In the constructor of my ParentPage I want the following:        public Parent(String bodyId) Then when

Re: add id to body with onComponentTag?

2009-06-30 Thread Marieke Vandamme
Sorry, my bad. I didn't see the overriding of 'isTransparentResolver'. I didn't know that existed. Thanks a lot! Marieke Vandamme wrote: Hello, Thanks for the answer, but that's not what I want. As I specified in my first post: I don't want to add a wicket:id to the body, because

setting value in TextField with ajax fails after field had error

2009-07-07 Thread Marieke Vandamme
Hello, Consider my code underneath and following actions: - Page has a form with a REQUIRED textfield and a button that updates that textfield through ajax - When clicking button the value in textfield is altered with 'hello' = Normal situation - When clearing the textfield again, the onError

Re: setting value in TextField with ajax fails after field had error

2009-07-09 Thread Marieke Vandamme
Hello, The onchange is what I need to use, but that's not my problem at all... Please try my code, and follow the steps I mentioned above my code. Has anyone else got a clue? Thanks ! Mathias Nilsson wrote: The onchange is only triggered when you type and then go onblur. Check

AutoCompleteTextField with initial focus not working

2009-07-16 Thread Marieke Vandamme
Hello, I have AutoCompleteTextField which has the focus when my page is loaded. When I just start typing (because the field has initial focus), then no list is shown. If I leave the field and then click in it again (loosing focus and then gaining it again), the list is shown. Can somebody

Re: AutoCompleteTextField with initial focus not working

2009-07-17 Thread Marieke Vandamme
document.getElementById('mytxt').focus(); igor.vaynberg wrote: how are you setting the initial focus? -igor On Thu, Jul 16, 2009 at 6:45 AM, Marieke Vandammemarieke.vanda...@tvh.be wrote: Hello, I have AutoCompleteTextField which has the focus when my page is loaded. When I just

Check if ajax request in HeaderContributor

2009-07-22 Thread Marieke Vandamme
Hello, How do I test if the request is an ajax request in the HeaderContributor? Because I don't want to call renderJavascriptReference and renderCSSReference when processing ajax request. Many thanks in advance! Marieke. DISCLAIMER A

Re: Check if ajax request in HeaderContributor

2009-07-22 Thread Marieke Vandamme
van der Pal wrote: So you are rendering the entire page again? Because usually you only target certain areas of the page, so the headers don't come into the picture. Linda Marieke Vandamme wrote: Hello, How do I test if the request is an ajax request in the HeaderContributor? Because

get resource translation with specific locale

2010-06-08 Thread Marieke Vandamme
Hello, Is it possible to use the getString or some other kind of function to get translation not in the language of the session, but one that is different? We need this to send email, but this email is to our internal employees, so needs to be in language other than the one that is requesting

get rights for mounted url

2010-06-08 Thread Marieke Vandamme
' to start from? I tried to look into the wicket-code, but somewhere between BookmarkablePageRequestTarget and RequestCycle I got lost... Hope someone can help me! Thanks for any help ! Marieke Vandamme -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/get-rights

Re: get resource translation with specific locale

2010-06-09 Thread Marieke Vandamme
Hi Erik, problem is that I generate the emailtext in the onSubmit of my form. The data that is printed in my form, and visible to the webuser, needs to be in the locale from the session. So I can't override the getLocale from the Form. Or am I missing something? Thanks, Marieke -- View this

Re: get rights for mounted url

2010-06-09 Thread Marieke Vandamme
Hi, Thanks for the hints, but there's only one thing I'm stuck with. I want to use MetaDataRoleAuthorizationStrategy.authorize(component, Component.RENDER, rights); to set the right on my link, where rights are the Roles. I now got my class from the IRequestTarget, but the only function in

Modalwindow with confirm box on close button

2010-10-27 Thread Marieke Vandamme
' is not an option, because showing the confirm-box should be just before going to server (or not if user doesn't confirm). Thanks for any help ! Kind Regards, Marieke Vandamme DISCLAIMER http://www.tvh.com/newen2/emaildisclaimer/default.html This message is delivered to all addressees subject

Betr.: Re: Modalwindow with confirm box on close button

2010-10-28 Thread Marieke Vandamme
for any help ! Kind Regards, Marieke Vandamme DISCLAIMER http://www.tvh.com/newen2/emaildisclaimer/default.html This message is delivered to all addressees subject to the conditions set forth in the attached disclaimer, which is an integral part of this message

Modalwindow showing content from external URL

2011-03-15 Thread Marieke Vandamme
Hello, Is there a way to open an external page inside a modalwindow? The reason why I ask is to avoid popup-blokkers... Or should i just put an iframe on my modalwindow? Thanks, Marieke Vandamme -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Modalwindow-showing

ModalWindow with Panel - HeaderContributor in Panel not called

2011-05-11 Thread Marieke Vandamme
to the page instead then adding it to the component, but HeaderContributors are defined inside the component constructor and then my page isn't ready yet. Can anyone help me or give me any hints? Thanks in advance ! Marieke vandamme -- View this message in context: http://apache-wicket.1842946.n4

Re: ModalWindow with Panel - HeaderContributor in Panel not called

2011-05-12 Thread Marieke Vandamme
every time on an ajax call, and most of the time it's not necessary. Thanks! Marieke Vandamme -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/ModalWindow-with-Panel-HeaderContributor-in-Panel-not-called-tp3514628p3516743.html Sent from the Users forum mailing list archive

Use pageparameters from authorized page to login

2011-05-25 Thread Marieke Vandamme
the pageparameters from the initial URL? Can't find them in request, not in pageparameters from loginpage, ... Thanks for any help ! Kind regards, Marieke Vandamme -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Use-pageparameters-from-authorized-page-to-login

Re: Use pageparameters from authorized page to login

2011-05-25 Thread Marieke Vandamme
onUnauthorizedInstantiation and pass the pageparameters pulled from RequestCycle? Thanks again. Marieke Vandamme -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Use-pageparameters-from-authorized-page-to-login-tp3549134p3549188.html Sent from the Users forum mailing list

Wicket 1.5 - return to previous page link

2011-06-03 Thread Marieke Vandamme
Hello, Is it possible to return to previous page with wicket-link (not browser link). In 1.4 I used: PageprevPage = getPage().getPageMap().get(pageIndicator.getPrevPageId(), -1); throw new RestartResponseAtInterceptPageException(prevPage); Thanks a lot, Marieke Vandamme -- View this message

Re: Wicket 1.5 - return to previous page link

2011-06-03 Thread Marieke Vandamme
page, otherwise, I want to make new instance of the page. Thanks ! Marieke Vandamme -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-1-5-return-to-previous-page-link-tp3570492p3570629.html Sent from the Users forum mailing list archive at Nabble.com

Wicket 1.5 - ModalWindow with page - abstract functions do not update model correct

2011-06-14 Thread Marieke Vandamme
. Hope someone can help me with this one !! If I should provide some more code or information, please let me know. Thanks in advance! Kind Regards, marieke Vandamme -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-1-5-ModalWindow-with-page-abstract-functions-do

Re: Wicket 1.5 - ModalWindow with page - abstract functions do not update model correct

2011-06-15 Thread Marieke Vandamme
in wicket 1.4 and now functionality is lost? Thanks for any help ! Marieke Vandamme -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-1-5-ModalWindow-with-page-abstract-functions-do-not-update-model-correct-tp3596526p3598583.html Sent from the Users forum mailing list

Re: Wicket 1.5 - ModalWindow with page - abstract functions do not update model correct

2011-06-15 Thread Marieke Vandamme
); ModalWindow.closeCurrent(target); } }); } } Console output: setting pagevalue 2 to [ModalWindowPage value] getting pageValue [initial value] Thanks a lot ! Marieke Vandamme -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-1-5

Re: Wicket 1.5 - ModalWindow with page - abstract functions do not update model correct

2011-06-16 Thread Marieke Vandamme
abstract functions? I use them very often and find it a real lost that this doesn't work anymore in 1.5. Thanks! Marieke Vandamme. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-1-5-ModalWindow-with-page-abstract-functions-do-not-update-model-correct

Use html from url as markup

2011-07-11 Thread Marieke Vandamme
location http://myserver.tvh.com/test.html has a wicket:child/ tag inside. So somehow before returning the UrlResourceStream, it should be merged. Thanks for any help! Kind regards, Marieke Vandamme -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Use-html-from-url-as-markup

Re: Use html from url as markup

2011-07-11 Thread Marieke Vandamme
I've tried, but only getting the html from the parent page. What's between wicket:extend-tags is'nt on it... -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Use-html-from-url-as-markup-tp3658921p3659001.html Sent from the Users forum mailing list archive at

Re: Use html from url as markup

2011-07-11 Thread Marieke Vandamme
! Kind Regards, Marieke Vandamme -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Use-html-from-url-as-markup-tp3658921p3659156.html Sent from the Users forum mailing list archive at Nabble.com

1.5 - getResourceSettings addResourceFolder - getResource

2012-04-17 Thread Marieke Vandamme
Dear, I'm converting a project from wicket 1.4 to wicket 1.5. Underneath worked in 1.4, but doesn't in 1.5. - In my application I add an additional resource folder: getResourceSettings().addResourceFolder(c:\\myfolder); - I have a class ResourceGetter in com.test package. - I'm trying to

Wicket 6 - getEventHandler/getAjaxCallDecorator removed

2012-09-13 Thread Marieke Vandamme
complicated when you look at it the first time. Many thanks! Kind regards, Marieke Vandamme -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-6-getEventHandler-getAjaxCallDecorator-removed-tp4651968.html Sent from the Users forum mailing list archive

Re: Wicket 6 - getEventHandler/getAjaxCallDecorator removed

2012-09-13 Thread Marieke Vandamme
Sorry, I guess I should read the information provided first ... https://cwiki.apache.org/confluence/display/WICKET/Wicket+Ajax -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-6-getEventHandler-getAjaxCallDecorator-removed-tp4651968p4651970.html Sent from

Re: Wicket 6 - drupal markup is rendered totally wrong

2012-09-17 Thread Marieke Vandamme
Hi, underneath the first part where it goes wrong. Al the -tag is printed before the *html wicket makes from it:* style type=text/css media=all /**/ /**/ /**/ */-- /**/ style type=text/css media=print /*![CDATA[*/ @import

Re: Wicket 6 - drupal markup is rendered totally wrong

2012-09-18 Thread Marieke Vandamme
hi Martin, Could you test with my code? Is it a bug or is something in my template not correct. Thanks ! kind regards, Marieke -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-6-drupal-markup-is-rendered-totally-wrong-tp4652034p4652084.html Sent from the

Re: Wicket 6 - drupal markup is rendered totally wrong

2012-09-18 Thread Marieke Vandamme
Sorry, it's a common fact that women can make something difficult from something very easy. I hope my quickstart does the trick. WICKET-4766 Thanks ! -- View this message in context:

Re: wicket-dnd strange situation

2012-09-19 Thread Marieke Vandamme
Dear Sven, Is wicket-dnd already changed for wicket 6 ? I can't find the sources for this.. Thanks! Kind Regards, Marieke Vandamme -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-dnd-strange-situation-tp4650918p4652141.html Sent from the Users forum

Re: Wicket 6 - add AjaxCallListener to existing component

2012-09-27 Thread Marieke Vandamme
Hi, I have a component that I use to do my own feedback an stuff. This component contains a LabeledWebMarkupContainer, which is passed inside the constructor. This LabeledWebMarkupContainer can be a TextField, DropDownChoice, Radio, ... The constructor is like this: public

Re: Wicket 6 - add AjaxCallListener to existing component

2012-09-27 Thread Marieke Vandamme
Sorry, I don't get it... When I don't want to change all the constructors of my components, how can I use the function updateAjaxAttributes on an already existing component ? I thought this function is only overriddable when you are constructing the component. So when you want to add the same

Re: Wicket 6 - add AjaxCallListener to existing component

2012-09-27 Thread Marieke Vandamme
In wicket 1.5 I could do: this.visitChildren(new IVisitorComponent, Void() { public void component(Component component, IVisitVoid visit) { component.add(new AjaxEventBehavior()); } } -- View this message in context:

IE CSS engine doesn't support dynamically injected links in conditional comments

2013-01-15 Thread Marieke Vandamme
Hi, We use wicket 6.4.0 and as a result of WICKET-4894 we now get the following message in our logfiles very often: IE CSS engine doesn't support dynamically injected links in conditional comments. I don't know how to solve this, since this is happening when adding a component to the target.

Session expires almost immediate after login

2013-11-07 Thread Marieke Vandamme
, Marieke Vandamme -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Session-expires-almost-immediate-after-login-tp4662205.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe

DataView clearCachedItemCount

2007-11-21 Thread Marieke Vandamme
Hello, I'm having problems with using a pageable view and ajax. In the application the user can add his favorite to a list of favorites. The list has 20 favorites on 1 page. When the user inserts his 21th favorite, the dataview should show page 2 instead of page 1, showing the new favorite to

TabbedPanel + authorization strategy

2007-11-26 Thread Marieke Vandamme
Hello, Is it possible to use TabbedPanel from wicket extensions together with the wicket auth-roles? Because TabbedPanel contains AbstractTab (which do not extend Component), I didn't find a way to set the specific roles for each tab. Thanks ! -- View this message in context:

Re: TabbedPanel + authorization strategy

2007-11-26 Thread Marieke Vandamme
Hello, Thanks for the idea, but I already tried that.. The problem is that the panel is only created when the user clicks on the according tab, which in my case is too late. I don't want the tab to be printed if the user is not authorized. Fridolin Jackstadt wrote: Marieke Vandamme schrieb

Re: TabbedPanel + authorization strategy

2007-11-26 Thread Marieke Vandamme
Vandamme [EMAIL PROTECTED] wrote: I don't want the tab to be printed if the user is not authorized. so dont add it to the list of itabs you give the panel... ? -igor Fridolin Jackstadt wrote: Marieke Vandamme schrieb: Hello, Is it possible to use TabbedPanel from wicket

Re: TabbedPanel + authorization strategy

2007-11-26 Thread Marieke Vandamme
That won't compile.. I guess because AbstractTab doesn't extends Component.. Eelco Hillenius wrote: On Nov 26, 2007 6:56 AM, Marieke Vandamme [EMAIL PROTECTED] wrote: Hello, Thanks for the idea, but I already tried that.. The problem is that the panel is only created when the user

Re: TabbedPanel + authorization strategy

2007-11-26 Thread Marieke Vandamme
I tried that, but it won't compile. Maybe because AbstractTab doesn't extends Component? I can't add the @AuthorizeAction to the panel, because the panel is only created when the specific tab is clicked. Eelco Hillenius wrote: On Nov 26, 2007 10:38 PM, Marieke Vandamme [EMAIL PROTECTED

Re: TabbedPanel + authorization strategy

2007-11-27 Thread Marieke Vandamme
/wicketsecurity/tabs/ You probably want the hide tabs option. Source is available at https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicket-security-examples Maurice On Nov 27, 2007 8:02 AM, Marieke Vandamme [EMAIL PROTECTED] wrote: I tried that, but it won't compile. Maybe because

Modal Window not opening the second time

2008-04-24 Thread Marieke Vandamme
Hello, i'm having problems with the modal window. It shows up fine when I click my link the first time, but after closing the window with the 'X', it won't open again. I don't know if I'm using it wrong or if it's a bug. Any help is welcome ! thanks. Marieke. My code : public class

Re: Modal Window not opening the second time

2008-04-28 Thread Marieke Vandamme
Hello, can't anyone help me with this problem? If I need to code it differently, please tell me. Thanks !! Marieke Vandamme wrote: Hello, i'm having problems with the modal window. It shows up fine when I click my link the first time, but after closing the window with the 'X

Re: Modal Window not opening the second time

2008-04-28 Thread Marieke Vandamme
ModalWindow.PageCreator() { public Page createPage() { return new MyChooser(modal); } } * it will work. Try it. Cristi Manole On Mon, Apr 28, 2008 at 1:07 PM, Marieke Vandamme [EMAIL PROTECTED] wrote: Hello, can't anyone help me with this problem? If I need to code

Re: Modal Window not opening the second time

2008-04-29 Thread Marieke Vandamme
. What does the javascript debug window tell you? Maybe the modal window some things that is is still shown On 4/29/08, Marieke Vandamme [EMAIL PROTECTED] wrote: Hello, Thanks for the reply. But isn't it possible to reuse the modalwindow? Because in my application the window needs

Re: Modal Window not opening the second time

2008-04-29 Thread Marieke Vandamme
); modalWindow.setContent(new ManageWeightPanel(modalWindow .getContentId(), modalWindow, new BaseEntityDetachableModel(getPerson(; modalWindow.show(target); } }; Marieke Vandamme wrote

Re: Modal Window not opening the second time

2008-04-29 Thread Marieke Vandamme
for you is in the closing.. Because the shown boolean should be reverted to false johan On Tue, Apr 29, 2008 at 10:21 AM, Marieke Vandamme [EMAIL PROTECTED] wrote: The javascript debug window is printing no error. The server returns an empty response (?xml version=1.0 encoding=UTF-8?ajax

Re: Modal Window not opening the second time

2008-04-29 Thread Marieke Vandamme
I created a jira issue https://issues.apache.org/jira/browse/WICKET-1576 Thanks ! Johan Compagner wrote: make a test case then and attach it to a jira issue On Tue, Apr 29, 2008 at 11:11 AM, Marieke Vandamme [EMAIL PROTECTED] wrote: Sorry, but I don't know what the solution

ModalWindow with internal ModalWindow problem

2008-06-18 Thread Marieke Vandamme
Hello, I have a rather complex situation, but If I'm not clear enough here, I can make a test case. My situation: - Page with contact details - Open a window to send the details to my colleague by email - In that window open another window to choose my colleague from a list of employees My

Re: ModalWindow with internal ModalWindow problem

2008-06-18 Thread Marieke Vandamme
. Marieke Vandamme wrote: Hello, I have a rather complex situation, but If I'm not clear enough here, I can make a test case. My situation: - Page with contact details - Open a window to send the details to my colleague by email - In that window open another window to choose my colleague from

Re: ModalWindow with internal ModalWindow problem

2008-06-19 Thread Marieke Vandamme
filterStart Jun 19, 2008 11:41:58 AM org.apache.catalina.core.StandardContext start SEVERE: Context [/ModalWindowTestcase2] startup failed due to previous errors Marieke Vandamme wrote: Hey, I found a place where I can place my war for a while : http://www.driespannenkoeken.be

Re: ModalWindow with internal ModalWindow problem

2008-06-19 Thread Marieke Vandamme
browser are you using, im using FF2 and safari3.. However this are using wicket 1.4-snapshot(from wicketstuff repo) can you try to use that and see it the problem are solved? Just to be sure? Marieke Vandamme wrote: Hello, Okay, second try.. I made my war again and tested it myself

Re: ModalWindow with internal ModalWindow problem

2008-06-19 Thread Marieke Vandamme
that there are something that are inconsistant, 10 mins and i'll see if I can hack something up that works. Or if it's a true bug. Marieke Vandamme wrote: Are you sure? The version I'm using is 1.4m2, so I don't think so much has changed. Did you do the following steps and have the list filled the second

Re: ModalWindow with internal ModalWindow problem

2008-06-20 Thread Marieke Vandamme
Wael wrote: Marieke Vandamme wrote: That's nice. Our company's surfing control blocks the site :-) I'll try to download it at home. I don't think the problems happen because it's the homepage. Could just be a problem in what I've done then... In my original project, the page wasn't

Re: Page Expired with ModalWindow

2008-06-20 Thread Marieke Vandamme
Why would you want to open a new ModalWindow? Can't you just open your WebPage in the first ModalWindow? Daniel Wu wrote: Hi, the application I've been developing have to open modal dialogs in sequence. I have a dialog A, which is a panel with an AjaxLink, and when this AjaxLink is

Spring's AbstractMessageSource : read new label from DB

2008-06-23 Thread Marieke Vandamme
Hello, I don't know if my question is Spring related or wicket related, but i guess it's wicket related so... If not, my apologies, but please tell me so i can post my question to the correct mailinglist. I use the org.springframework.context.support.AbstractMessageSource to read my labels

Re: Spring's AbstractMessageSource : read new label from DB

2008-06-23 Thread Marieke Vandamme
. The function loadStringResource in IStringResourceLoader is only called once for a label. Only when redeploying the application, the message is again retreived with the loadStringResource. Is there any way to clear that cache manually or something? Thanks again ! Marieke Vandamme wrote: Hello, I

Generic busy indicator - override for AjaxSelfUpdatingTimerBehavior

2013-12-04 Thread Marieke Vandamme
Dear wicket users, We are using the Generic busy indicator found on the wiki to have a busy indicator for every ajax event. https://cwiki.apache.org/confluence/display/WICKET/Generic+Busy+Indicator+%28for+both+Ajax+and+non-Ajax+submits%29# In that article on the wiki, it's also described how

Re: Generic busy indicator - override for AjaxSelfUpdatingTimerBehavior

2013-12-05 Thread Marieke Vandamme
Hi, Okay, I'll do my best to explain more in detail. When doing an ajax call, we want to show a busy indicator on the page, so that the user knows that something is happening and that he must wait for the ajax response. This can be done by adding the Generic busy indicator (as described on the

use AjaxFormChoiceComponentUpdatingBehavior to submit form

2014-04-09 Thread Marieke Vandamme
to send values of all form fields to server. But can not be used on choices/groups. Is it possible to combine those 2? Thanks ! Kind Regards, Marieke Vandamme -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/use-AjaxFormChoiceComponentUpdatingBehavior-to-submit-form

Re: use AjaxFormChoiceComponentUpdatingBehavior to submit form

2014-04-09 Thread Marieke Vandamme
Hi, It can not be used on a RadioGroup. When I tested it on RadioGroup, the onsubmit function in AjaxFormSubmitBehavior isn't called. I know changed it so that the AjaxFormSubmitBehavior is added to each Radio, but I thought there might be another solution. Kinds Regards, Marieke Vandamme

ModalWindow - full screen

2014-10-14 Thread Marieke Vandamme
Hi, I know you can set initial width and height for a modalwindow, but we now get the requirement to open it full screen. Is this something built in already, or has somebody done this before? Thanks ! Kind Regards, Marieke Vandamme -- DISCLAIMER http://www.tvh.com/glob/en/email

WICKET-5727: PageAccessSynchronizer$PageLock.waitForRelease problem with opening pdf files

2014-10-14 Thread Marieke Vandamme
Hi, On this jira issue we got some directions on how to solve our problems, but some things aren't clear yet. *then use a AjaxTimerBehavior to monitor progress, and redirect to a ResourceReference once the thread is done.* How is it possible to redirect to ResourceReference in onTimer function of

Re: ModalWindow - full screen

2014-10-21 Thread Marieke Vandamme
, 2014 at 11:32 AM, Marieke Vandamme marieke.vanda...@tvh.com wrote: Hi, I know you can set initial width and height for a modalwindow, but we now get the requirement to open it full screen. Is this something built in already, or has somebody done this before? Thanks ! Kind Regards

ResourceFinders - order of looking into folders for resource

2016-02-11 Thread Marieke Vandamme
removing it from the library? Something like defining a ResourceFinder as the first to look from? Thanks for any help ! Kind Regards, Marieke Vandamme -- DISCLAIMER http://www.tvh.com/glob/en/email-disclaimer "This message is delivered to all addressees subject to the condition

Re: wicket 7 + cglib + asm: net.sf.cglib.core.CodeGenerationException

2016-03-30 Thread Marieke Vandamme
ependencies coming with wicket-spring. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Wed, Mar 30, 2016 at 4:00 PM, Marieke Vandamme < > marieke.vanda...@tvh.com> > wrote: > > > ​Hi, > > > > I'm trying to

wicket 7 + cglib + asm: net.sf.cglib.core.CodeGenerationException

2016-03-30 Thread Marieke Vandamme
​Hi, I'm trying to use wicket 7.2.0 and saw in the migration guide ​that other libraries also changed to the latest stable version. So I also tried this, and the following are used by me now: - Spring Framework 4.2.5 - ASM 5.1 - CGLIB 3.2.1 I get the following stacktrace, on which I'm really

Re: wicket 7 + cglib + asm: net.sf.cglib.core.CodeGenerationException

2016-03-30 Thread Marieke Vandamme
ps://twitter.com/mtgrigorov > > On Wed, Mar 30, 2016 at 4:20 PM, Marieke Vandamme < > marieke.vanda...@tvh.com> > wrote: > > > Hi, > > > > That's something I first tried, but other libraries we use (like > > org.apache.tika.tika-parsers) set version of as

StringResourceModel - setParameters - ConverterLocator

2016-05-19 Thread Marieke Vandamme
​Dear, I use the new method within Wicket 7 (​currently using 7.3.0) : new StringResourceModel("MYLABEL").setParameters(new double(1.2)). Also in my application I have a ConverterLocator defined, which converts doubles. But I don't think this conversion is used within my StringResourceModel. Is

Re: StringResourceModel - setParameters - ConverterLocator

2016-05-19 Thread Marieke Vandamme
verted). > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Thu, May 19, 2016 at 10:24 AM, Marieke Vandamme < > marieke.vanda...@tvh.com > > wrote: > > > ​Dear, > > > > I use the new method within Wicket 7 (​curr

Re: AutoCompleteTextField Stateless

2017-07-14 Thread Marieke Vandamme
show them using purely javascript. > > cheers > > Pedro Santos > > On Thu, Jun 29, 2017 at 11:33 AM, Marieke Vandamme < > marieke.vanda...@tvh.com > > wrote: > > > Hi, > > > > ​This is working. Thanks ! > > Do you also have a solution for the

Re: AutoCompleteTextField Stateless

2017-06-29 Thread Marieke Vandamme
{ > return true; >} > }; > > On Thu, Jun 29, 2017 at 12:19 PM, Marieke Vandamme < > marieke.vanda...@tvh.com > > wrote: > > > And maybe even a more difficult one, is it possible to make ModalWindow > > statele

StatelessForm with CheckGroup

2017-07-03 Thread Marieke Vandamme
​Hi, I'm using Apache Wicket 7.7.0. Using following (summarized) code works: Form form = new Form("form"); CheckGroup group = new CheckGroup("group")​; group.add(new ListView("list"){ populateItem(ListItem li){ li.add(new CheckBox("chk")); } }.setReuseItems(true)); But when I

AutoCompleteTextField Stateless

2017-06-29 Thread Marieke Vandamme
​Hi, I'm using Apache Wicket 7.7.0. Is it possible to make AutoCompleteTextField Stateless? ​I'm using StatelessChecker in my application and @StatelessComponent on my Panel. I've overridden getStatelessHint for the AutoCompleteTextField to return true. But the StatelessChecker is complaining:

Re: AutoCompleteTextField Stateless

2017-06-29 Thread Marieke Vandamme
.vanda...@tvh.com *TVH GROUP NV* Brabantstraat 15 • BE-8790 WAREGEM T +32 56 43 42 11 <+3256434211> • F +32 56 43 44 88 • www.tvh.com View our company movies via downloads on our website. 2017-06-29 12:05 GMT+02:00 Marieke Vandamme <marieke.vanda...@tvh.com>: > ​Hi, > > I'

FileNotFoundException when saving page to disk

2017-09-05 Thread Marieke Vandamme
Hi, This morning we release a new version of our website, and start getting strange exceptions in the logfile. *2017-09-05 15:49:06 ERROR DiskDataStore:438 - /run/jetty/aaa/bbb.dir/cccFilter-filestore/6809/6405/11rhtvkkhzsiqk1jcfde055w23b/data (No such file or directory)*

  1   2   >