WicketTester and https

2010-08-30 Thread Michael Sparer
hi, is there a way to test Pages that have the @RequireHttps annotation? currently the code getTester().startPage(RegisterPage.class); getTester().assertRenderedPage(RegisterPage.class); results in this Exception: junit.framework.AssertionFailedError: page

Shouldn't an IConverter also work for StringResourceModels?

2010-08-24 Thread Michael Sparer
Hi, I've got an entry in a properties file that looks like this: text=I'll pay ${moneyAmount} where moneyAmount is an Object like the one below public class MoneyAmount { long amount; // getters and setters } I registered a converter in the Application that does the formatting depending

Shortening a wicket:message

2010-08-23 Thread Michael Sparer
Hey, I have a component that constructs a wicket:message just like Erik does in his blog post (http://day-to-day-stuff.blogspot.com/2008/05/wicket-internationalization.html) the .html is as follows: wicket:message key=sentence wicket:container wicket:id=userComponent/wicket:container

Re: Unnecessary method calls in IDataProvider?

2009-11-10 Thread Michael Sparer
done: https://issues.apache.org/jira/browse/WICKET-2568 regards, igor.vaynberg wrote: jira issue please -igor On Mon, Nov 9, 2009 at 5:53 AM, Michael Sparer michael.spa...@gmx.at wrote: Hey, I could have sworn that if a IDataProvider used in a DataView returns 0 as size

Unnecessary method calls in IDataProvider?

2009-11-09 Thread Michael Sparer
Hey, I could have sworn that if a IDataProvider used in a DataView returns 0 as size, the iterator(int,int) method won't be called. But that assumption proved me wrong some minutes ago. Is there any specific reason why iterator gets called when the only possible result is an empty Iterator?

Re: passing a session to a wizard

2009-07-20 Thread Michael Sparer
() {     // setResponsePage(Index.class);     } }   Any Help will be highly appreciated   - Michael Sparer http://techblog.molindo.at -- View this message in context: http://www.nabble.com/Re%3A-passing-a-session-to-a-wizard-tp24569201p24572534.html Sent from the Wicket - User

Re: Getting a JS confirmation when uploading via Ajax

2009-06-24 Thread Michael Sparer
-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org - Michael Sparer http://techblog.molindo.at -- View this message in context: http://www.nabble.com/Getting-a-JS-confirmation-when-uploading-via-Ajax-tp24167696p24186854.html Sent

Ajax components on error pages

2009-03-27 Thread Michael Sparer
().getResponse(); if (res.isAjax()) { res.getHttpServletResponse().setStatus(HttpServletResponse.SC_OK); } } - Michael Sparer http://techblog.molindo.at -- View this message in context: http

Re: AutoCompleteTextField and accentuated characters

2009-03-23 Thread Michael Sparer
of the getChoices method. Is there something I can do about that? I am using Wicket 1.3.5 Thanks... - Michael Sparer http://techblog.molindo.at -- View this message in context: http://www.nabble.com/AutoCompleteTextField-and-accentuated-characters-tp22637037p22661278.html Sent from

Re: AutoCompleteTextField and accentuated characters

2009-03-23 Thread Michael Sparer
that it is actually UTF-8 in the request. Good that is what I thought first, but why in the java code it is not interpreted correctly? From what I remember, Java string are always in UTF-8. No? Thierry On Mon, Mar 23, 2009 at 10:30, Michael Sparer michael.spa...@gmx.at wrote: it isn't

Re: paging in wicket

2009-03-10 Thread Michael Sparer
on how to do paging and discovered this: http://www.wicketstuff.org/wicket13/repeater/?wicket:bookmarkablePage=:org.apache.wicket.examples.repeater.PagingPage Also, Anybody know of any good resources on the topic? - Michael Sparer http://techblog.molindo.at -- View this message

Re: Button onSubmit not called, instead page reloads

2009-03-05 Thread Michael Sparer
the button, instead of calling the onSubmit(), the page itself is reloaded. Would anyone have any ideas what might be wrong? - Michael Sparer http://techblog.molindo.at -- View this message in context: http://www.nabble.com/Button-onSubmit-not-called%2C-instead-page-reloads

Re: Button onSubmit not called, instead page reloads

2009-03-05 Thread Michael Sparer
alright, then show us more code :-) ... and I'd recommend upgrading to 1.3.5 anyway ... Edwin Ansicodd wrote: I'm using Wicket 1.3.0 Michael Sparer wrote: the page reloading itself is expected behaviour as the form gets submitted, the onSubmit() method should however be called

Re: Button onSubmit not called, instead page reloads

2009-03-05 Thread Michael Sparer
() { return name; } public void setname(String name) { this.name = name; } } Michael Sparer wrote: the page reloading itself is expected behaviour as the form gets submitted, the onSubmit() method should however be called. if you

Re: Switching between markup files for borders

2009-02-25 Thread Michael Sparer
RoundedCornerBorder_white.html How to do this in Wicket? - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org - Michael Sparer http

Re: AW: Avoid serialization troubles with static members

2009-02-19 Thread Michael Sparer
For additional commands, e-mail: users-h...@wicket.apache.org - Michael Sparer http://techblog.molindo.at -- View this message in context: http://www.nabble.com/Avoid-serialization-troubles-with-static-members-tp22082899p22097988.html Sent from the Wicket - User mailing list archive

Re: AW: AW: Avoid serialization troubles with static members

2009-02-19 Thread Michael Sparer
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org - Michael Sparer http://techblog.molindo.at -- View this message in context: http://www.nabble.com/Avoid-serialization-troubles

Re: Making an invisible panel visible via AjaxLink

2009-02-19 Thread Michael Sparer
markup for the pannel at all and hence the ajax calls fails becuase it don't find the markup to render the panel. Any suggestions how to tackle a situation like this. Regards, RJ - Michael Sparer http://techblog.molindo.at -- View this message in context: http://www.nabble.com

Re: Making an invisible panel visible via AjaxLink

2009-02-19 Thread Michael Sparer
. Michael Sparer wrote: put the panel in an additional container and add this container WebmarkupContainer div = new WebmarkupContainer(cont); div.setOutputMarkupId(true); div.add(registeredUserPanel.setVisible(false)); then in the onclick stuff registeredUserPanel.setVisible(true

exception handling for session dependent URLs

2009-02-16 Thread Michael Sparer
fixed in 1.3.6/1.4 - I'm using 1.3.5). I thinks accidentally pasting session dependent URLs in blogs etc. shouldn't result in server errors ... would it be save to throw e.g. a PageExpiredException instead of IllegalStateExceptions? Michael - Michael Sparer http://techblog.molindo.at -- View

Re: exception handling for session dependent URLs

2009-02-16 Thread Michael Sparer
aye aye captain :-) https://issues.apache.org/jira/browse/WICKET-2107 igor.vaynberg wrote: please create a jira issue. -igor On Mon, Feb 16, 2009 at 6:00 AM, Michael Sparer michael.spa...@gmx.at wrote: I recently came across a link to one of my projects where a user linked

Re: Adding/Replacing links in Panels

2009-02-13 Thread Michael Sparer
, and then I click on the Permissions home page, I get an error saying addLink already exists in the markup. Is there a better way to handle links than this? Thanks! - Michael Sparer http://techblog.molindo.at -- View this message in context: http://www.nabble.com/Adding-Replacing-links

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

2009-02-03 Thread Michael Sparer
/dtds.data/wicket-xhtml1.3-strict.dtd http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd Best wishes, Timo But those two are exactly the same (same size and same content, only the file names differ). Why are there two identical files? Best regards, Kent - Michael

Re: Google Adsense.

2009-02-03 Thread Michael Sparer
other than to remove the ad. Once i remove the ad, the page is fine. Id appreciate if anyone has any experience in this area of adsense and wicket. - Michael Sparer http://techblog.molindo.at -- View this message in context: http://www.nabble.com/Google-Adsense.-tp21764673p21807132.html

Re: Implementing the cwiki's Calling Wicket from Javascript

2009-02-03 Thread Michael Sparer
) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:619) - Michael Sparer http://techblog.molindo.at -- View this message in context: http://www.nabble.com/Implementing-the-cwiki%27s-%22Calling-Wicket-from-Javascript%22-tp21815652p21816483.html

Re: CSS Arrangement Order

2009-02-02 Thread Michael Sparer
are CSS included with the libraries / components I used in my web application. How do I make my own CSS,css/style.css, to be placed after these CSS in head? Thanks /lim/ - Michael Sparer http://techblog.molindo.at -- View this message in context: http://www.nabble.com/CSS

Re: Unable to find resource: global.application.title for component

2009-01-30 Thread Michael Sparer
) at org.apache.wicket.Component.getModelObjectAsString(Component.java:1532) at org.apache.wicket.markup.html.basic.Label.onComponentTagBody(Label.java:111) at org.apache.wicket.Component.renderComponent(Component.java:2419) ... 40 more - Michael Sparer http

Re: Ajaxified Notification

2009-01-30 Thread Michael Sparer
: users-h...@wicket.apache.org - Michael Sparer http://techblog.molindo.at -- View this message in context: http://www.nabble.com/Ajaxified-Notification-tp21742197p21745293.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: DataView and increasing session size

2009-01-29 Thread Michael Sparer
Menzel - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org - Michael Sparer http://talk-on-tech.blogspot.com -- View this message

Re: AW: getRequest().getPage() always null

2009-01-29 Thread Michael Sparer
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/getRequest%28%29.getPage%28%29

Re: DataView and increasing session size

2009-01-29 Thread Michael Sparer
onDetach() { super.onDetach(); } } Michael Sparer wrote: the objects shouldn't be serialized into the session if you're using loadabledetachable models, please show us some code regards, Michael Jürgen Lind-2 wrote: Hi, I have a question on how

Re: Focus on component

2009-01-29 Thread Michael Sparer
-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org - Michael Sparer http://techblog.molindo.at -- View this message in context: http://www.nabble.com/Focus-on-component-tp21727553p21730148.html Sent from the Wicket - User mailing list archive

Re: QuickStart not finding Wicket classes

2009-01-27 Thread Michael Sparer
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/QuickStart

Re: Unexpected RuntimeException: RestartResponseException in onBeforeRender of cached page

2009-01-27 Thread Michael Sparer
) at org.apache.wicket.Component.internalBeforeRender(Component.java:1002 I use wicket 1.3.5 - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/Unexpected-RuntimeException%3A-RestartResponseException-in-onBeforeRender-of-cached-page

Re: Getting an error when trying to install via Maven

2009-01-26 Thread Michael Sparer
) ... Removed 18 stack frames Please note, that I didn't code anything at all, I just tried to test the basic skeleton. Is this error intentional or something is going wrong? Thanks. - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http

Re: Pagination in wicket

2009-01-23 Thread Michael Sparer
or provide some samples, it would be big help for me. I have tried googling Pagination in wicket but not yet get the solution. I have also tried Pagenavigator but don't know how to use it correctly(Stuck in creating the dataview Thanks in advance Karthic - Michael Sparer http

Re: Re: Why you should not override isVisible

2009-01-16 Thread Michael Sparer
-mail: users-h...@wicket.apache.org - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org - Michael Sparer http://talk

Re: Where to process PageParameters

2009-01-15 Thread Michael Sparer
archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Jeremy Thomerson http://www.wickettraining.com - Michael

Re: Where to process PageParameters

2009-01-15 Thread Michael Sparer
of rules is that they tend to be taken at face value without even thinking about it. Having to maintain the state of the visible flag manually is an anti-pattern in my book. Martijn On Thu, Jan 15, 2009 at 10:21 AM, Michael Sparer michael.spa...@gmx.at wrote: Jeremy, I used to do some

Re: PropertyModel that add/read element from collection

2009-01-13 Thread Michael Sparer
DefaultValueDropDownChoice(id, new PropertyModel(model, categories), jobTypes)); .. This obviously doesn't work since categories is mapped to a java.util.Set. /Johan - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com

Re: Help,How to download all files in one folder ?

2009-01-12 Thread Michael Sparer
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/Help%2CHow-to-download-all-files-in-one-folder

Re: Help,How to download all files in one folder ?

2009-01-12 Thread Michael Sparer
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org - Michael Sparer http://talk-on-tech.blogspot.com -- View this message

Re: Why Named Wicket

2009-01-12 Thread Michael Sparer
working with wicket for one month and suddenly a thought came why it is named wicket.:working: So anybody know the reason why wicket is named so. Thanks in advance Karthic - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http

Re: wicket:link - how to configure the markup of the current page.

2009-01-07 Thread Michael Sparer
) - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/wicket%3Alink---how

Re: [announce]Wicketstuff the Movie!

2009-01-07 Thread Michael Sparer
/2748657 I might be doing a similar one for Wicket if theres any interest..? Ps the movie are created with the codeswarm project.. - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/-announce-Wicketstuff-the-Movie%21

Re: error messages due to hack/search-bots

2008-12-22 Thread Michael Sparer
-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Jeremy Thomerson http://www.wickettraining.com - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/error-messages-due-to-hack-search

Re: Localization - problem with refreshing page

2008-12-19 Thread Michael Sparer
Milan - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context

Re: Localization - problem with refreshing page

2008-12-19 Thread Michael Sparer
())) { return active; } else { return inactive; } } } On Fri, Dec 19, 2008 at 6:10 AM, Michael Sparer michael.spa...@gmx.at wrote: I see where the problem lies. Try to do the following: private final class LocaleSwitchLink extends Link { private

Re: updating text in labels using ajax?

2008-12-18 Thread Michael Sparer
: setResponsePage - a new page Any idea? - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/updating-text-in-labels-using-ajax--tp21072083p21072177.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: updating text in labels using ajax?

2008-12-18 Thread Michael Sparer
is that the user shouldnt have to press any button to update the labels... Michael Sparer wrote: Sure, use a simple Label and an AjaxButton, set setOutputMarkupId = true on the label and add it in the onSubmit method to the ajaxrequesttarget (target.addComponent(label)). But I'd also

Re: indicating AjaxFallbackDefaultDataTable

2008-12-18 Thread Michael Sparer
AjaxFallbackDefaultDataTable , do we have any ? - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/indicating---AjaxFallbackDefaultDataTable-tp21074747p21074864.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: DOJO Debug messages written in the html document

2008-12-17 Thread Michael Sparer
, Emanuele - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org - Michael Sparer http://talk-on-tech.blogspot.com -- View this message

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2008-12-12 Thread Michael Sparer
reasonable except dojo-cometd-client to use? The dojo stuff feels really bloated for me Am 11.12.2008 um 15:00 schrieb Michael Sparer: Alright, I'll keep an eye on changes of your project. Maybe we can merge some useful stuff in the future, but for now I'm of the same opinion as you

Re: [OT] wicket users around the world

2008-12-12 Thread Michael Sparer
-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/-OT--wicket-users-around-the-world-tp20962108p20971372.html Sent from the Wicket - User

Re: Want a simple way to put in conditional css for IE..?

2008-12-11 Thread Michael Sparer
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/Want-a-simple-way-to-put-in-conditional-css-for-IE

Re: Child page with no html

2008-12-11 Thread Michael Sparer
PROTECTED] -- Jeremy Thomerson http://www.wickettraining.com - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/Child-page-with-no-html-tp20945577p20952952.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2008-12-11 Thread Michael Sparer
, 2008 at 9:40 AM, Michael Sparer [EMAIL PROTECTED]wrote: Rodolfo, so you finally decided to stick with your initial idea ;-) did you at least have a look at the cometd stuff in the new wicketstuff-dojo-1.1. project? I'm still against the idea to split up wicketstuff-push completely from

Re: Asynchron push/update/redirect

2008-12-10 Thread Michael Sparer
to previews page. here i can also use a modal window, which displays two buttons (yes i want and no, i won't) thanks alex - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/Asynchron-push-update-redirect-tp20934629p20935238.html Sent from

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2008-12-09 Thread Michael Sparer
Singleton and the session that registered the singleton (i thought of a couple of ways to register them, and decided to choose the one present in the code for it) Please let me know of any suggestions, ideas for the proj. - Michael Sparer http://talk-on-tech.blogspot.com -- View

Re: Openid integration?

2008-12-03 Thread Michael Sparer
2936 7684 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com

Re: Openid integration?

2008-12-02 Thread Michael Sparer
Specialist @ Jayway DK http://www.jayway.dk +45 2936 7684 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - Michael Sparer http://talk-on-tech.blogspot.com -- View

Re: Hand on session code

2008-11-27 Thread Michael Sparer
/ LinkedIn: http://www.linkedin.com/in/egolan74 P Save a tree. Please don't print this e-mail unless it's really necessary - Eyal Golan [EMAIL PROTECTED] Visit: JVDrums LinkedIn: LinkedIn - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http

Re: Hand on session code

2008-11-27 Thread Michael Sparer
this method? Thanks Eyal Golan [EMAIL PROTECTED] Visit: http://jvdrums.sourceforge.net/ LinkedIn: http://www.linkedin.com/in/egolan74 P Save a tree. Please don't print this e-mail unless it's really necessary On Thu, Nov 27, 2008 at 3:31 PM, Michael Sparer [EMAIL PROTECTED]wrote

Re: Hand on session code

2008-11-27 Thread Michael Sparer
. Please don't print this e-mail unless it's really necessary On Thu, Nov 27, 2008 at 4:27 PM, Michael Sparer [EMAIL PROTECTED]wrote: What do you mean by saying you didn't see onRuntimeException in WebRequestCycleProcessor? If you didn't find it there it's because it's a method of its base

Re: Is there any other way? DataProviders must hit the Db twice for (possible) large datasets

2008-11-26 Thread Michael Sparer
render. Obvously I don't want to hard code a size. Is there any other way ? Thanks Wayne - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/Is-there-any-other-way--DataProviders-must-hit-the-Db-twice-for-%28possible%29-large

Re: mount outside init

2008-11-21 Thread Michael Sparer
application class? Another question would be to keep the /customer1 or /customer2 in every request so if I call setResponsePage( new Login() ) then I would like to keep /customer1/login. Any suggestions? - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http

Re: Model never called

2008-11-19 Thread Michael Sparer
commands, e-mail: [EMAIL PROTECTED] - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/Model-never-called-tp20577931p20578051.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: ajax busy indicator never stops in IE

2008-11-19 Thread Michael Sparer
: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/ajax-busy-indicator-never-stops-in-IE-tp20485948p20577814.html Sent from the Wicket - User mailing list

Re: on click on a link in a listview works with td but but not with div or span

2008-11-13 Thread Michael Sparer
/tr /table /div - Michael Sparer http://talk-on-tech.blogspot.com -- View

Re: on click on a link in a listview works with td but but not with div or span

2008-11-13 Thread Michael Sparer
listitems are in one table , how to have this ? Michael Sparer wrote: I don't quite get what you're trying to achieve. A table inside a table cell? That shouldn't be a problem if you add/replace your components inside the table cell and not the row. But what I see in your markup

Re: Meet the Wicket community: Bruno Borges and Jeremy Thomerson

2008-11-13 Thread Michael Sparer
and don't hesitate to follow up with questions—I know both are reading the blog too :) Martijn - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - Michael Sparer http

Re: Bugs in wicket

2008-11-07 Thread Michael Sparer
google for wicket jira regards, Michael jensiator wrote: Hi I have noticied something in wicket-datetime that might be a bug. (DatePicker in a ModalWindow with IE7) Where can I registrate unknown Issues and check existing Issues in the wicket framework? Jens - Michael Sparer

Re: wicketstuff-push is over, wickestuff-dojo-1.1 is born ???

2008-11-06 Thread Michael Sparer
.html -- Julien Graglia NetCeler - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - Michael Sparer http://talk-on-tech.blogspot.com -- View this message

Re: get method defined for class

2008-11-06 Thread Michael Sparer
Overgoor 2go-mobile b.v. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http

Re: Design question : accessing components between panels

2008-11-05 Thread Michael Sparer
, Arun Wagle - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http

Re: attribute modifier on onclick

2008-11-04 Thread Michael Sparer
to the label , but there is no change , when I see the generated html it does not include the added style , can I change the style of a component in any of the events of a component ? - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com

Re: AjaxFallbackButton and setDefaultFormProcessing(false)

2008-11-04 Thread Michael Sparer
); } } // CLOSE CLASS. - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/AjaxFallbackButton-and-setDefaultFormProcessing%28false%29-tp20316060p20318750.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: wicket:link - no automatic italicizing behavior needed

2008-10-31 Thread Michael Sparer
italicizing behavior when using wicket:link-tags? - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/%3Cwicket%3Alink%3E---no-automatic-italicizing-behavior-needed-tp20269389p20271491.html Sent from the Wicket - User mailing list archive

Re: no title in ExternalLink

2008-10-28 Thread Michael Sparer
ticket here: https://issues.apache.org/jira/browse/WICKET-1878 cheers, Steve - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/no-title-in-ExternalLink-tp20030239p20211164.html Sent from the Wicket - User mailing

Re: Editable drop down component

2008-10-27 Thread Michael Sparer
). Is there such a component or do I need to write on on my own? Kind regards: al_shopov - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - Michael Sparer http://talk-on-tech.blogspot.com

Re: What's the difference between Check and CheckBox

2008-10-23 Thread Michael Sparer
der Sluis - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/What%27s-the-difference-between-Check-and-CheckBox-tp20125256p20126224.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: FireFox 3.x.x issue with wicket

2008-10-22 Thread Michael Sparer
of the text. This happens with FireFox 3.x.x What can i do in this case?This is happening in some pcs. - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/FireFox-3.x.x-issue-with-wicket-tp20104033p20105053.html Sent from the Wicket

Re: FireFox 3.x.x issue with wicket

2008-10-22 Thread Michael Sparer
?This is happening in some pcs. - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/FireFox-3.x.x-issue-with-wicket-tp20104033p20105728.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: how to redirect wicket pages using javascript

2008-10-21 Thread Michael Sparer
(ArcotNoIdPage.java:49) ... 34 more any idea...Thanks a lot...Cheers. - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/how-to-redirect-wicket-pages-using-javascript-tp20083835p20084307.html Sent from the Wicket - User mailing list archive

Re: A wicket gathering?

2008-10-14 Thread Michael Sparer
] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/A-wicket-gathering--tp19967487p19974743.html Sent from the Wicket - User mailing list

Re: retrieveing page parameters

2008-10-13 Thread Michael Sparer
getPageParameters()? Didn't you look at the API before posting? ;-) miro wrote: I am using setRedirect(true); setResponsePage(MyPage.class,pageParameters); in Mypage how can I retrieve pageParameters ? - Michael Sparer http://talk-on-tech.blogspot.com -- View this message

Re: retrieveing page parameters

2008-10-13 Thread Michael Sparer
then there either weren't any pageparams or you missed to call super(params) regards, Michael miro wrote: I tried that , getPageParameters() was returning null . Michael Sparer wrote: getPageParameters()? Didn't you look at the API before posting? ;-) miro wrote: I am using

Re: retrieveing page parameters

2008-10-13 Thread Michael Sparer
wrote: in your constructor that has a parameter PageParameters... miro a écrit : where should I call super(params) ? Michael Sparer wrote: then there either weren't any pageparams or you missed to call super(params) regards, Michael miro wrote: I tried

Re: prepulating a form and changing behaviour

2008-10-13 Thread Michael Sparer
the construction of the page with extending this class and overriding some methods in this case do I have to create a new bookmark ? - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/prepulating-a--form--and-changing-behaviour

Re: retrieveing page parameters

2008-10-13 Thread Michael Sparer
parameters but wont show them in url ? also I doing a redirect from the caller. Michael Sparer wrote: Yepp you need one if you want your mounting strategies work ... and for getPageParameters not returning null ;-) miro wrote: I dont have a constructor with PageParameters.Do I

Re: wicket + spring + jpa/ hibernate = lazy load exception

2008-10-09 Thread Michael Sparer
Martinez Vazquez Wael wrote: Yup the way that I do it too almost down to every line:) Michael Sparer wrote: When using the OSIV-filter the lazyload exception may only happen if the same entity is used among different requests ... sothat it gets detached from hibernate. have a look

Re: AjaxPagingNavigator and IndicatingAjaxLink

2008-10-08 Thread Michael Sparer
alright, but that's more CSS fiddling than wicket related have fun tweaking your styles ;-) regards, Michael Reinout van Schouwen-4 wrote: Op woensdag 08-10-2008 om 02:56 uur [tijdzone -0700], schreef Michael Sparer: why not just let your IndicatingPagingNavigator implement

Re: AjaxPagingNavigator and IndicatingAjaxLink

2008-10-08 Thread Michael Sparer
: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/AjaxPagingNavigator-and-IndicatingAjaxLink-tp19875656p19875773.html Sent from the Wicket - User mailing list

Re: RadioChoice with Ajax

2008-10-07 Thread Michael Sparer
choice? - with Ajax (no submit button) - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/RadioChoice-with-Ajax-tp19855494p19856377.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: more than one html file accessible

2008-09-30 Thread Michael Sparer
, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/more-than-one-html-file-accessible-tp19742743p19743279.html Sent from the Wicket - User mailing list

Re: wicket panels and parent class

2008-09-29 Thread Michael Sparer
class MyProfile.java cheers, Steve - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/wicket-panels-and-parent-class-tp19722417p19722473.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: wicket + spring + jpa/ hibernate = lazy load exception

2008-09-29 Thread Michael Sparer
commands, e-mail: [EMAIL PROTECTED] - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/wicket-%2B-spring-%2B-jpa--hibernate-%3D-lazy-load-exception-tp19721199p19722521.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: wicket panels and parent class

2008-09-29 Thread Michael Sparer
On 29 Sep 2008, at 12:58, Thies Edeling wrote: And then have to cast it to the class of the parent.. which kinda kills the independent component based idea of reusable panels. Why not pass along the userid when constructing? Or fetch it from the session. Michael Sparer wrote

Re: Need to open the Link in another window

2008-09-25 Thread Michael Sparer
PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/Need-to-open-the-Link-in-another-window-tp19666989p19667118.html Sent from the Wicket - User mailing list archive

Re: Wicket sample application

2008-09-22 Thread Michael Sparer
PROTECTED] wrote: But none with database access ? Original-Nachricht Datum: Thu, 18 Sep 2008 05:05:21 -0700 (PDT) Von: Michael Sparer [EMAIL PROTECTED] An: users@wicket.apache.org Betreff: Re: Wicket sample application just go a click further and you'll

  1   2   3   >