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 wa

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: the .properties file is the following: sentence=${userComponent}: I'll ${actionCompo

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 > wrote: >> Hey, >> >> I could have sworn that if a IDataProvider used in

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? W

Re: passing a session to a wizard

2009-07-20 Thread Michael Sparer
/** > * Construct. > */ >     public StepQm(QuestionMatch qn) { >     super("Three", "The third step"); >     } >     } >     public void onCancel() { >     //setResponsePage(Index.class); >     } >     /** >

Re: Getting a JS confirmation when uploading via Ajax

2009-06-24 Thread Michael Sparer
cript confirmation dialog? > Is there a way to get ride of it? > Thanks. > > > - > 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 -- V

Ajax components on error pages

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

Re: AutoCompleteTextField and accentuated characters

2009-03-23 Thread Michael Sparer
am unable to > compare the string with what I have in my db. > > You say 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? > > Thi

Re: AutoCompleteTextField and accentuated characters

2009-03-23 Thread Michael Sparer
ed?). For a 'é', it sends is '%C3%A9'. That what is received as the > parameter 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 -- Vie

Re: paging in wicket

2009-03-10 Thread Michael Sparer
ocs 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://

Re: Button onSubmit not called, instead page reloads

2009-03-05 Thread Michael Sparer
c String getPageTitleKey() { > return "searchpage.pagetitle"; > } > > > public String getPageContextKey() { > return "searchpage"; > } > > @Override > public String getContentWidth() {

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 >> submitt

Re: Button onSubmit not called, instead page reloads

2009-03-05 Thread Michael Sparer
the button: > > > > but when I click 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: ht

Re: Switching between markup files for borders

2009-02-25 Thread Michael Sparer
dCornerBorder_black.html > 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...@wick

Re: Making an invisible panel visible via AjaxLink

2009-02-19 Thread Michael Sparer
worked like a charm. >> >> Best Regards, >> RJ. >> >> >> Michael Sparer wrote: >>> >>> put the panel in an additional container and add this container >>> >>> WebmarkupContainer div = new WebmarkupContainer("con

Re: Making an invisible panel visible via AjaxLink

2009-02-19 Thread Michael Sparer
gisteredUserPanel.setVisible(false), > becuase by defualt I don't want this pannel to be visible; the wicket > don't render the html 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 t

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

2009-02-19 Thread Michael Sparer
ad it (without maven).. > > Regards, > Christian > > > > > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > > - Michael Sp

Re: AW: Avoid serialization troubles with static members

2009-02-19 Thread Michael Sparer
t() > { > addComponentInstantiationListener(new SpringComponentInjector(this)); > } > > // ... > > } > > The compiler says: "cannot find symbol. symbold: constructor > SpringComponentInjector(...)" > > SpringComponentInjector is on the classpath, the impo

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 > wrote: >> >> I recently came across a link to one of my pro

exception handling for session dependent URLs

2009-02-16 Thread Michael Sparer
lem (or it may be already 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

Re: Adding/Replacing links in Panels

2009-02-13 Thread Michael Sparer
ddLink", > EditPermissions.class)); > default: > } > > > The Problem is, when I click on the Users homepage, and then I click on > the Permissions home page, I ge

Re: Implementing the cwiki's "Calling Wicket from Javascript"

2009-02-03 Thread Michael Sparer
ngineValve.java:109) > at > org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286) > at > org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844) > at > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Htt

Re: Google Adsense.

2009-02-03 Thread Michael Sparer
> this error and the html stack traces. > > Im not entirely sure what to do 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://te

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

2009-02-03 Thread Michael Sparer
> file names differ). Why are there two identical files? > > Best regards, Kent > > - Michael Sparer http://techblog.molindo.at -- View this message in context: http://www.nabble.com/What-is-the-best-way-to-handle-%22Undefined-attribute-name-%28wicket%3Aid%29%22--warnings-from-Eclipse-G

Re: CSS Arrangement Order

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

Re: Ajaxified Notification

2009-01-30 Thread Michael Sparer
1744321.html >> Sent from the Wicket - User mailing list archive at Nabble.com. >> >> >> ----- >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org >> For additional commands, e-mail: users-h...@

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

2009-01-30 Thread Michael Sparer
ableDetachableModel.java:114) > at org.apache.wicket.Component.getModelObject(Component.java:1510) > at > org.apache.wicket.Component.getModelObjectAsString(Component.java:1532) > at > org.apache.wicket.markup.html.basic.Label.onComponentTagBody(Label.java:111) > at org.apache

Re: Focus on component

2009-01-29 Thread Michael Sparer
n: +49 (0) 761 - 203 6707 > Fax: +49 (0) 761 - 203 6800 > E-Mail: dau...@averbis.de > > Geschäftsführer: Dr. med. Philipp Daumke, Kornél Markó > Sitz der Gesellschaft: Freiburg i. Br. > AG Freiburg i. Br., HRB 701080 > > > - > To unsubscr

Re: DataView and increasing session size

2009-01-29 Thread Michael Sparer
.result == null) { >this.performQuery(); > } > return this.result.size(); >} > >public void detach() { > this.result = null; >} > >private void performQuery() { > ... >} > } > > > public class Detachable

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

2009-01-29 Thread Michael Sparer
ppens, I would call the >> setResponsePage(StartPage.class) etc. >> >> The problem is: When I call getRequest().getPage() in the onBeginRequest >> method, the result is always null. >> Do you know how to get the page the request was initiated from? >> >> Best regard

Re: DataView and increasing session size

2009-01-29 Thread Michael Sparer
stergericht der iteratec GmbH: München HRB 113 519 > Geschäftsführer: Klaus Eberhardt, Mark Goerke, Inge Hanschke, Ralf Menzel > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org >

Re: Unexpected RuntimeException: RestartResponseException in onBeforeRender of cached page

2009-01-27 Thread Michael Sparer
(Component.java:3682) > at > org.apache.wicket.extensions.markup.html.tabs.TabbedPanel.onBeforeRender(TabbedPanel.java:205) > at > org.apache.wicket.Component.internalBeforeRender(Component.java:1002 > > I use wicket 1.3.5 > > > > - Michael Sparer http://ta

Re: QuickStart not finding Wicket classes

2009-01-27 Thread Michael Sparer
PortletURL url = >>> renderResponse.createActionURL(); >>> ^ >>> >>> could not parse error message: >>> org\apache\wicket\protocol\http\portlet\PortletRequestContext.java(org\a >>> pache\wicket\

Re: Getting an error when trying to install via Maven

2009-01-26 Thread Michael Sparer
reBooter.runSuitesInProcess(SurefireBooter.java:345) > at > org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1009) > ... Removed 18 stack frames > > Please note, that I didn't code anything at all, I just tried to test the > basic skel

Re: Pagination in wicket

2009-01-23 Thread Michael Sparer
ting the dataview > > > Thanks in advance > Karthic > - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/Pagination-in-wicket-tp21620591p21620701.html Sent from the Wicket - User mailing list archive at Nabble.com. ---

Re: Re: Why you should not override isVisible

2009-01-16 Thread Michael Sparer
on-null and another > >>>>> for the value it returned. > >>>>> > >>>> > >>>> - > >>>> To unsubscribe, e-ma

Re: Where to process PageParameters

2009-01-15 Thread Michael Sparer
of Wicket development. The > problem with these types 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

Re: Where to process PageParameters

2009-01-15 Thread Michael Sparer
> >> >> >> -- >> >> Become a Wicket expert, learn from the best: http://wicketinaction.com >> >> Apache Wicket 1.3.5 is released >> >> Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3. >> >> >> >> ---

Re: PropertyModel that add/read element from collection

2009-01-13 Thread Michael Sparer
is this: > .. > form.add(new DefaultValueDropDownChoice("id, new PropertyModel(model, > "categories"), jobTypes)); > .. > > This obviously doesn't work since "categories" is mapped to a > java.util.Set. > > /Johan > - Mi

Re: Why Named Wicket

2009-01-12 Thread Michael Sparer
Actually i am 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-o

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 >>> >>> >

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

2009-01-12 Thread Michael Sparer
>> >>> >>> >>> PSkarthic wrote: >>> >>>> I am also a newbie but i will try >>>> could u be please more specific or elabrate >>>> >>>> >>>> >>> >>> >> >> >>

Re: [announce]Wicketstuff the Movie!

2009-01-07 Thread Michael Sparer
uot; > > Go here to see http://vimeo.com/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: htt

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/w

Re: error messages due to hack/search-bots

2008-12-22 Thread Michael Sparer
lassLoader.loadClass(WebappClassLoader.java:1387) >>>> >>>> [...snip...] >>>> >>>> >>>> So... any ideas to catch these errors? >>>> >>>> >>>> >>>> Antoine >>>> >>

Re: Localization - problem with refreshing page

2008-12-19 Thread Michael Sparer
h.equals(Session.get().getLocale())) > { > return "active"; > } > else > { > return "inactive"; > } > } > } > > On Fri, Dec 19, 2008 at 6:10 AM, Michael Sparer > wrote: >> >> I see wher

Re: Localization - problem with refreshing page

2008-12-19 Thread Michael Sparer
blic void onClick (AjaxRequestTarget target) { > target.addComponent (enLink); > target.addComponent (czLink); > getSession().setLocale (toSwitch); > } > } > > I think that the problem is that I do not know how to set locale via > ajaxRequestTarget. > > Again thanks for

Re: Localization - problem with refreshing page

2008-12-19 Thread Michael Sparer
ed. Please > help, how can I do these two things together? > > thanks for any advice > > Milan > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h..

Re: indicating AjaxFallbackDefaultDataTable

2008-12-18 Thread Michael Sparer
for indicating 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 l

Re: updating text in labels using ajax?

2008-12-18 Thread Michael Sparer
But the problem 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 met

Re: updating text in labels using ajax?

2008-12-18 Thread Michael Sparer
te the text on the label > etc etc > when all web service methods are finished: 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

Re: DOJO Debug messages written in the html document

2008-12-17 Thread Michael Sparer
; > container.add(new DojoContextualMenuBehavior(menu)); > > add(container); > ... > > > > > > I would like to have printed the error messages in the ajax debug window > or found a way to resolve this depre

Re: [OT] wicket users around the world

2008-12-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/-OT--wicket

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

2008-12-12 Thread Michael Sparer
for comet... is there anything > 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 >&g

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

2008-12-11 Thread Michael Sparer
ith its own > mindset, > no? > > > On Tue, Dec 9, 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 a

Re: Child page with no html

2008-12-11 Thread Michael Sparer
>addToRepeater(SomePanel("c3")); >>>addToRepeater(SomePanel("c4")); >>> } >>> } >>> >>> Where BasePage will have a method called addToRepeater which just adds >>> the >>> component to the repeater. >>> I see we could do some trick

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

2008-12-11 Thread Michael Sparer
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 this message in context:

Re: Asynchron push/update/redirect

2008-12-10 Thread Michael Sparer
when the event is > occured i want to redirect the user 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

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

2008-12-09 Thread Michael Sparer
oveListener that allows access to the Wicket Application > 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

Re: Openid integration?

2008-12-03 Thread Michael Sparer
unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> > > -- > -Wicket for love > > Nino Martinez Wael > Java Specialist @ Jayway DK > http://www.jayway.dk > +45 2936 7684 > > > --

Re: Openid integration?

2008-12-02 Thread Michael Sparer
>> > > -- > -Wicket for love > > Nino Martinez Wael > Java Specialist @ Jayway DK > http://www.jayway.dk > +45 2936 7684 > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additio

Re: Hand on session code

2008-11-27 Thread Michael Sparer
t; > Thanks again, that was very much helpful. > > > 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

Re: Hand on session code

2008-11-27 Thread Michael Sparer
.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: > >> >> the first possibility that

Re: Hand on session code

2008-11-27 Thread Michael Sparer
gt; > 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 > > > - > Eyal Golan >

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

2008-11-26 Thread Michael Sparer
to hit the database twice for > each > DataProvider 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

Re: mount outside init

2008-11-21 Thread Michael Sparer
can I mount /customer2 outside of > the init method of the wicket 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? >

Re: Model never called

2008-11-19 Thread Michael Sparer
out.println("GetObject"); > if (someState) > return icon1; > return icon2; > > } > } > > /Axel > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For addi

Re: ajax busy indicator never stops in IE

2008-11-19 Thread Michael Sparer
;>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>&

Re: authenticatedWebSession class not found

2008-11-13 Thread Michael Sparer
" is not present in the > 1.3.4 jar nor 1.3.5 . > > Is there another package that contains this class? > > Frank > > - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/authenticatedWebSession-class-not-found

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

2008-11-13 Thread Michael Sparer
ail: [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/Meet-the-Wicket-community%3A-Bruno-Borges-and-Jeremy-Thomerson-t

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
> > > > batchInfos is a listview so If i my listitem are 4 all the html for > batchInfos gets repeated so creating a new table for each list item which > means different tab

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
> > > > wicket:id="date"> > >

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? > Je

Re: wicket ajax and 508 compilance

2008-11-06 Thread Michael Sparer
icket and we like to use ajax , using wicket ajax will the > application still be 508 compliant ? > - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/wicket-ajax-and-508-compilance-tp20360177p20360614.html Sent from the Wicket - User

Re: get method defined for class

2008-11-06 Thread Michael Sparer
> Note that this code is untested, and intended as explanation. > > -- > With kind regards, > Jurrie Overgoor > 2go-mobile b.v. > > > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For addit

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

2008-11-06 Thread Michael Sparer
rrupted" : a "dojo" > folder is missing.. > > > > 1 : http://www.nabble.com/New-wicketstuff-dojo-project-td19070145.html > -- > Julien Graglia > NetCeler > > > --------- &

Re: Design question : accessing components between panels

2008-11-05 Thread Michael Sparer
me as I have lot of cases with these scenarious >>> ? >>> >>> >>> >>> >>> Regards, >>> Arun Wagle >>> >> >> - >> To u

Re: AjaxFallbackButton and setDefaultFormProcessing(false)

2008-11-04 Thread Michael Sparer
s1=" + s1); > label.setDefaultModelObject(s1); > > if (target != null) { > target.addComponent(label); > } > } > }; > > // If this is

Re: attribute modifier on onclick

2008-11-04 Thread Michael Sparer
tributemodifier 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 m

Re: - no automatic italicizing behavior needed

2008-10-31 Thread Michael Sparer
possibility to disable the automatic italicizing behavior > when using -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 fro

Re: no title in ExternalLink

2008-10-28 Thread Michael Sparer
attribute as a parameter (or the > ExternalLink set a title by default). > > I have filed a Jira ticket here: > https://issues.apache.org/jira/browse/WICKET-1878 > > > cheers, > Steve > > > > > > > > > > - Michael Sparer http

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] > > &

Re: generate javascript file together with html page

2008-10-27 Thread Michael Sparer
the normal wicket style rendering of delegating to the contained > component hierarchies). > > Any pointers would be appreciated. > > Ittay > - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/generate-javascript-fi

Re: What's the difference between Check and CheckBox

2008-10-23 Thread Michael Sparer
one enlighten me ? > > regards, > > Minto van 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.h

Re: FireFox 3.x.x issue with wicket

2008-10-22 Thread Michael Sparer
xes I only see half 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

Re: FireFox 3.x.x issue with wicket

2008-10-22 Thread Michael Sparer
boxes I only see half 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

Re: how to redirect wicket pages using javascript

2008-10-20 Thread Michael Sparer
legatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at > org.apache.wicket.proxy.LazyInitProxyFactory$JdkHandler.invoke(LazyInitProxyFactory.java:416) > at org.apache.wicket.proxy.$Proxy23.get3QA(Unknown Source) > at > co

Re: A wicket gathering?

2008-10-14 Thread Michael Sparer
st täglich um >> 8:30 Uhr. Es werden vorrangig Informationen berücksichtigt, die nach >> 16:00 >> Uhr des Vortages eingegangen sind. Die Email-Adresse unserer Redaktion >> lautet [EMAIL PROTECTED] >> >> >> >> --

Re: retrieveing page parameters

2008-10-13 Thread Michael Sparer
o pass > 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 ;-) >> >> &

Re: retrieveing page parameters

2008-10-13 Thread Michael Sparer
geParameters() > > Pills wrote: >> >> in your constructor that has a parameter PageParameters... >> >> >> miro a écrit : >>> where should I call super(params) ? >>> >>> Michael Sparer wrote: >>> >>>> then there either

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

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-te

Re: prepulating a form and changing behaviour

2008-10-13 Thread Michael Sparer
want to change 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-

Re: Hi, How to set one url(www.cnn.com..../abc.gif) to Image

2008-10-10 Thread Michael Sparer
@Override > public IResourceStream getResourceStream() { > > throw new UnsupportedOperationException("Not supported > yet."); > } > }); > > thanks a lot, > > > > - Michael Sparer http://talk-on-te

Re: Navigation set active Page

2008-10-09 Thread Michael Sparer
o solve this problem: > > I create a Navigation for my project with css. I cant set the active Page > in the Navigation. Body-Problem with child and extend? > > Have someone a best-practise or help for me ... > > Thanks... > HITECH68 > > > - Michael Spa

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

2008-10-09 Thread Michael Sparer
> On Tuesday 30 September 2008 08:40:11 Nino Saturnino 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 >> t

Re: Ajax:submit formcomponent with ajaxbutton

2008-10-09 Thread Michael Sparer
y form > and so.. > > Is this possible in any way? Are is it something that can be added to the > AjaxFormComponentUpdatingBehavior class? > Thanks ! Marieke > - Michael Sparer http://talk-on-tech.blogspot.com -- View this message in context: http://www.nabble.com/Ajax%3Asubmit-for

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 IndicatingPagin

Re: AjaxPagingNavigator and IndicatingAjaxLink

2008-10-08 Thread Michael Sparer
ck(); > } > }; > } > } > */ > > regards, > > -- > Reinout van Schouwen > > > > --------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] &g

  1   2   3   >