Re: Strange wicket bug in DataView?

2007-12-21 Thread igor . vaynberg
do all browsers send it? -igor On 12/21/07, Matej Knopp <[EMAIL PROTECTED]> wrote: > Maybe, just maybe, we could look at the accept header, before > rendering the page... > > -Matej > > On Dec 21, 2007 6:42 AM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > >

Re: Wicket really dumb? Converting & to & in password fields?

2007-12-21 Thread Igor Vaynberg
what version of this dumb framework are you using? -igor On Dec 21, 2007 10:23 AM, fattymelt <[EMAIL PROTECTED]> wrote: > > I've been debugging a (hopefully) unrelated problem when I came across > this... > > Someone submits "passw&rd" as a password in my login form and the back-end > gets it as

Re: Reusable search form - help w/ detail...

2007-12-21 Thread Igor Vaynberg
public abstract class SearchForm { . protected abstract void onSearch(SearchInput input); ... add(new Button("searchButton") > { > public void onSubmit() > { >

Re: Wicket really dumb? Converting & to & in password fields?

2007-12-21 Thread Igor Vaynberg
pretty hard to misunderstand "Wicket really dumb?" :) -igor On Dec 21, 2007 10:49 AM, Francisco Diaz Trepat - gmail <[EMAIL PROTECTED]> wrote: > Misunderstandings happen eventually, but Wicket RULEZ, and its community > too. > > :-) > > my2cents, > f(t) > > On Dec 21, 2007 3:40 PM, Sergey Podate

Re: Wizard and Upload Form

2007-12-23 Thread Igor Vaynberg
put the upload component into its own form... -igor On Dec 23, 2007 12:21 PM, BatiB80 <[EMAIL PROTECTED]> wrote: > > Hi, > > I have a Wizard containg of several steps. In one step I have different > form-components. I additionally added a FileUploadField and a Button to load > the file up. The h

Re: Where is DatePicker for 1.3 ?

2007-12-24 Thread Igor Vaynberg
there are two a yahoo based on in wicket-datetime core project, and a dhtml calendar baseed on in wicketstuff-calendar -igor On Dec 24, 2007 11:39 AM, smallufo <[EMAIL PROTECTED]> wrote: > I am upgrading to Wicket 1.3 rc2 > But found no DatePicker component. > The only one I can find seems for

Re: Fragment(String,String) is deprecated ?

2007-12-24 Thread Igor Vaynberg
javadoc for (string, string, markupcontainer) says * @param markupProvider *The component whose markup contains the fragment's markup */ -igor On Dec 24, 2007 11:58 AM, smallufo <[EMAIL PROTECTED]> wrote: > In 1.3 rc2 , I found Fragment(String,String) is

Re: How to avoid escaping of the choice-modelobject for a DropDownChoice?

2007-12-28 Thread Igor Vaynberg
add an rfe into our jira please -igor On Dec 26, 2007 1:40 PM, Edvin Syse <[EMAIL PROTECTED]> wrote: > Hi, > > I would like to avoid escaping of my choice-data for a DropDownChoice. It > seems DropDownChoice derives from AbstractSingleSelectChoice, > which derives from AbstractChoice, and there

Re: AjaxEditableChoiceLabel uses a MultilineLabel (instead of maybe a Label?)

2007-12-28 Thread Igor Vaynberg
On Dec 28, 2007 10:27 AM, Juan Gabriel Arias <[EMAIL PROTECTED]> wrote: > The same to me. > > I also found a few issues with this component. How can i create bugs in > JIRA? go here https://issues.apache.org/jira/secure/Dashboard.jspa create an account, login, and create bug reports... -igor

Re: Can't Find/Load Properties Files

2007-12-28 Thread Igor Vaynberg
we do not currently check ValidatorClassName.properties files, there is an rfe open for that in jira and will go into 1.3.1 or 1.4.0. for now i would put those new properties into yourapplication.properties -igor On Dec 28, 2007 1:36 PM, Shelli D. Orton <[EMAIL PROTECTED]> wrote: > Hi, > > I as

Re: set the feedback message to js function

2007-12-31 Thread Igor Vaynberg
see how feedbackpanel is implemented, you can write a header contributor to spit feedback messages to a js function -igor On Dec 31, 2007 7:51 AM, JohnSmith333 <[EMAIL PROTECTED]> wrote: > > Could anyone tell me how to set the feedback message to js function like > alert("some txt must set")? >

Re: set the feedback message to js function

2008-01-01 Thread Igor Vaynberg
renderhead(IHeaderResponse r) { for (FeedbackMessage m:messages) { r.renderonloadjavascript("alert('"+m.toString()+"');"); } } -igor On Dec 31, 2007 11:25 PM, JohnSmith333 <[EMAIL PROTECTED]> wrote: > > Thanks for your kindly reply and help. > I have read the FeedbackPanel source code a

Re: Can't Find/Load Properties Files

2008-01-01 Thread Igor Vaynberg
PatternValidator a subclass of StringValidator, but would prefer to have > it subclass PatternValidator. > > Thanks again! > Shelli > > > -Original Message- > From: Igor Vaynberg [mailto:[EMAIL PROTECTED] > Sent: Friday, December 28, 2007 5:

Re: want to know if it is a good approach

2008-01-01 Thread Igor Vaynberg
the post is pretty confusing, i dont really understand what it is trying to solve/improve. for an example of linked drop downs see [1], it is trivial to implement... [1] http://wicketstuff.org/wicket13/ajax/choice if on the other hand it is trying to render a map of key value pairs as opposed to

Re: jetty and eclipse

2008-01-01 Thread Igor Vaynberg
why dont you follow the directions on this page [1], it works for me every time http://wicket.apache.org/quickstart.html -igor On Jan 1, 2008 11:41 PM, Fernando Wermus <[EMAIL PROTECTED]> wrote: > I found out the problem, but I continue to need a little help. > > I realized that It was working

Re: Nested list structures and RecursivePanel

2008-01-03 Thread Igor Vaynberg
you can use the wicket:container tag instead of span if you dont want anything in the output. alternatively you can call setrenderbodyonly(true) on the offending container, if it is part of the listview/refreshingview you have to call onpopulateitem(Item item, ...) { item.setrenderbodyonly(true);

Re: BookmarkablePageLink generating wrong URL

2008-01-03 Thread Igor Vaynberg
i think thats how wicket works by default when it generates urls. you can probably write your own coding strategy that doesnt append the slash after the mount. -igor On Jan 3, 2008 11:53 AM, Haritha Juturu <[EMAIL PROTECTED]> wrote: > Hi All > I am using mount(new QueryStringUrlCodingStrategy("/

Re: Problem with tomcat 6.0 and wicket 1.3

2008-01-03 Thread Igor Vaynberg
doesnt look like you included wicket jars in your war -igor On Jan 3, 2008 12:46 PM, Danilo Barsotti <[EMAIL PROTECTED]> wrote: > Hi all! > > I need build my application wrote with wicket 1.3 under tomcat 6.0, but I > don't know how to do this. > When I try start the server I receive a exception

Re: Problem with tomcat 6.0 and wicket 1.3

2008-01-03 Thread Igor Vaynberg
1.3.0\lib\wicket-spring-annot-1.3.0.jar > > I thing that the jars isen't the problem! > What do you thing? > > 2008/1/3, Igor Vaynberg <[EMAIL PROTECTED]>: > > > > > doesnt look like you included wicket jars in your war > > > > -igor > > >

Re: Newbie question. Override class attributes from a tabPanel component

2008-01-03 Thread Igor Vaynberg
if you update to trunk there is a new overridable protected LoopItem newTabContainer(int tabIndex); -igor On Jan 3, 2008 2:19 PM, Fernando Wermus <[EMAIL PROTECTED]> wrote: > Great! I will take a look at that. Thanks! > > It seems to be hardcoded the tabbedPanel class attribute :( > > Looking at

Re: Is it possible to use wicket without having any html page?

2008-01-03 Thread Igor Vaynberg
what would you like it to display? a web page or contents of some file/dynamic content? -igor On Jan 3, 2008 3:01 PM, legolas <[EMAIL PROTECTED]> wrote: > > Hi > Is it possible to use wicket without having any html page? > Just writing java code and pointing the browser to some url and it goes >

Re: tag is adding background-color attribute while rendering

2008-01-03 Thread Igor Vaynberg
umm, wicket doesnt do that. something else is probably doing it like some javascript you have added to the page. -igor On Jan 3, 2008 7:12 PM, venky221 <[EMAIL PROTECTED]> wrote: > > Hi, > > I am constructing an input text box as > > > This markup, I am making available using the getMarkupResou

Re: TabbedPanel making AJAX?

2008-01-04 Thread Igor Vaynberg
why exactly isnt ajaxtabbedpanel the way to go? -igor On Jan 4, 2008 7:48 AM, Beyonder Unknown <[EMAIL PROTECTED]> wrote: > > Hi Guys, > > I was wondering if there's a way to implement TabbedPanel that when you click > the tab, it will do an ajax call to the backend, and update the body of the

Re: Undesired behavior of wicket:enclosure in 1.3.0-final compared to 1.3.0-rc2

2008-01-04 Thread Igor Vaynberg
please open a jira issue and provide a quickstart -igor On Jan 4, 2008 7:15 AM, marcus dickerhof <[EMAIL PROTECTED]> wrote: > Hi everybody, > > I also have an exception with the nested tags since > wicket 1.3 final. > --> expecting closing tag... > > It works fine in 1.3. rc 2. > Perhaps this is

Re: TabbedPanel making AJAX?

2008-01-04 Thread Igor Vaynberg
thought I'd email this problem to the group, > thinking somebody have encountered this problem before. > > thanks, > Wen Tong > > -- > The only constant in life is change. > > - Original Message > From: Igor Vaynberg <[EMAIL PROTECTED]> > To: users

Re: Bug in 1.3-final: CheckBox.setRequired() is not picked up as error when unchecked

2008-01-04 Thread Igor Vaynberg
hmm, that was actually a request: https://issues.apache.org/jira/browse/WICKET-1221 not sure what to do here... -igor On Jan 4, 2008 7:49 AM, Edvin Syse <[EMAIL PROTECTED]> wrote: > I just filed: https://issues.apache.org/jira/browse/WICKET-1260 > > I'm on a deadline for a project and this make

Re: Bug in 1.3-final: CheckBox.setRequired() is not picked up as error when unchecked

2008-01-04 Thread Igor Vaynberg
> > you're done. What are the cons? > > > > -Matej > > > > > > On Jan 4, 2008 5:33 PM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > > > hmm, that was actually a request: > > > https://issues.apache.org/jira/browse/WICKET-1221 > >

Re: AjaxFormComponentUpdateBehavior not working with Radio/RadioGroup

2008-01-04 Thread Igor Vaynberg
ajaxformchoicecomponentupdatingbehavior or something similar... -igor On Jan 4, 2008 8:53 AM, wicket user <[EMAIL PROTECTED]> wrote: > Hi all, > > I am trying to add AjaxFormComponentUpdateBehavior to Radio/RadioGroup, > > I cant add the behaviour to the Radio as its not a FormComponent. > Adding

Re: How does wicket support conditional markup display?

2008-01-04 Thread Igor Vaynberg
you would put the message inside webmarkupcontainer and override its isvisible so it only returns true when there are no items in the list -igor On Jan 4, 2008 10:44 AM, Zheng, Xiahong <[EMAIL PROTECTED]> wrote: > I have a page that normally display a list of items retrieved from some > external

Re: Form binding fails when formcomponents are previously invalidated

2008-01-04 Thread Igor Vaynberg
create a testcase please -igor On Jan 4, 2008 11:52 AM, Edvin Syse <[EMAIL PROTECTED]> wrote: > Hi! > > I have a form which uses a CompoundPropertyModel. > > On the form I have a textfield which has a AjaxFormComponentUpdatingBehavior > connected to the onblur event. When I have some data in th

Re: Form binding fails when formcomponents are previously invalidated

2008-01-04 Thread Igor Vaynberg
t; > > > Feedback > > > > > > > > > > Number > > > > > > > > > > Name >

Re: Bug in MultiFileUploadField

2008-01-05 Thread Igor Vaynberg
On Jan 5, 2008 1:03 AM, Franklin Antony <[EMAIL PROTECTED]> wrote: > > 1)If I enter some data in the file upload field and just move out(something > like loose focus), then that entry I placed inside the text file just gets > listed below. My suggestion would be somehow to get that field as disable

Re: More CheckBox.setRequired() agony :)

2008-01-05 Thread Igor Vaynberg
boolean checkRequired() { return Boolean.TRUE.equals((Boolean)getModelObject()); } -igor On Jan 5, 2008 7:07 AM, Edvin Syse <[EMAIL PROTECTED]> wrote: > Hi! > > In regards to my earlier post concerning this: > > http://www.nabble.com/Bug-in-1.3-final%3A-CheckBox.setRequired%28%29-is-not-picked-u

Re: More CheckBox.setRequired() agony :)

2008-01-05 Thread Igor Vaynberg
erm, spoke too soon boolean checkRequired() { if (isRequired()) { return !Strings.isEmpty(getInput()); }} -igor On Jan 5, 2008 8:58 AM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > boolean checkRequired() { return > Boolean.TRUE.equals((Boolean)getModelObject()); } > > -igo

Re: About Page Expired of guestbook sample

2008-01-05 Thread Igor Vaynberg
seems to work fine http://wicketstuff.org/wicket13/guestbook/ did you tweak the filter mapping? -igor On Jan 5, 2008 8:23 AM, rosen jiang <[EMAIL PROTECTED]> wrote: > > hi all, > > I am studying guestbook sample of 1.3 right now, but encounter some problem: > If i submit the form, then rising "

Re: TabbedPanel sidebar question

2008-01-06 Thread Igor Vaynberg
you can subclass tabbedpanel and override the default markup it uses by providing your own .html file. the only thing to watch out is that the nesting of wicket:ids matches between the two html files. -igor On Jan 6, 2008 2:54 PM, Fernando Wermus <[EMAIL PROTECTED]> wrote: > Dears all, >

Re: DropDownChoice always on the top

2008-01-07 Thread Igor Vaynberg
you should probably try a css mailing list... -igor On Jan 7, 2008 12:48 AM, dariusz.holda <[EMAIL PROTECTED]> wrote: > > With Modal window it's actualy ok. sorry for confusion. I've noticed that if > you show modal window the dropdowns disappear. > With the list from the AutoCompleteTextField it

Re: [Wicket 1.2.6] How to get Wizard's form from inside a WizardStep?

2008-01-07 Thread Igor Vaynberg
jira is a better place for this... -igor On Jan 7, 2008 1:32 AM, Paolo Di Tommaso <[EMAIL PROTECTED]> wrote: > I would propose the following patch to AjaxFormSubmitBehavior. > > Basically adding a form-less constructor so that when the form obejct is not > specified it will discovered using the

Re: HTTP header + javascript problem in IE 6

2008-01-07 Thread Igor Vaynberg
override webpage.setheaders() -igor On Jan 7, 2008 6:11 AM, marcus dickerhof <[EMAIL PROTECTED]> wrote: > Hi, > I have AJAX-javascript problems (ModalWindow and Datepicker) that might be > linked to the HTTP Headers. > Somehow the Internet Explorer does not execute the Javascript, and I think >

Re: Disable compression for CSS and JS files

2008-01-07 Thread Igor Vaynberg
application.init() { getresourcesettings().setdisablegzipcompression(true); } -igor On Jan 7, 2008 7:26 AM, marcus dickerhof <[EMAIL PROTECTED]> wrote: > Hi, > how can I turn of the compression for CSS and JS files? > > Best regards > Marcus >

Re: Referring Page links to a deployed context

2008-01-07 Thread Igor Vaynberg
when you say www.anotherapp.com/MyTest is mytest a context and your filter is mounted on /* or is mytest the filter mapping and you are running in the root context? -igor On Jan 7, 2008 7:23 AM, mbelarbi <[EMAIL PROTECTED]> wrote: > > Hi, > > If my app (MyTest) is the root context everything run

Re: Referring Page links to a deployed context

2008-01-07 Thread Igor Vaynberg
ExternalLink is used to generate links to nonwicket resources, so there you have full control of the url. if you want to generate a link to the page you should do add(new BookmarkablePageLink("firstPage", FirstPage.class)); -igor On Jan 7, 2008 8:52 AM, mbelarbi <[EMAIL PROTECTED]> wrote: > > I

Re: Wicket Session and threading

2008-01-07 Thread Igor Vaynberg
class MySession extends WebSession { private Long userId; private transient User user; public SYNCHRONIZED void setUser(User user) { user=user; userId=(user==null)?null:user.getId(); } public SYNCHRONIZED void getUser() { if (user==null) { if (userId!=null) {

Re: Wicket Session and threading

2008-01-07 Thread Igor Vaynberg
cle. Because the > websession object can be hit by multiple request (threads) > > > On 1/7/08, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > > class MySession extends WebSession { > > private Long userId; > > private transient User user; > > > > pub

Re: Wicket Session and threading

2008-01-07 Thread Igor Vaynberg
and anyways, who cares, dont even need to cache it. let getuser() always load it. hibernate caches for-id lookups anywho... -igor On Jan 7, 2008 1:53 PM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > gah, i meant to put it into a threadlocal but forgot, oh well, use > your imagination

Re: rendering a panel

2008-01-07 Thread Igor Vaynberg
panel2 should use a detachable model, that way it automatically updates when rerendered. no need to call render() or anything else. see the wiki page on detachable models. -igor On Jan 7, 2008 1:33 PM, Beyonder Unknown <[EMAIL PROTECTED]> wrote: > > Hi All, > > Greetings! I was wondering if any

Re: Wicket Session and threading

2008-01-07 Thread Igor Vaynberg
oblems 1/100 times caused by code in my > websession implementation. > > -Original Message- > From: Igor Vaynberg [mailto:[EMAIL PROTECTED] > > Sent: Monday, January 07, 2008 1:54 PM > To: users@wicket.apache.org > Subject: Re: Wicket Session and threading > > and a

Re: rendering a panel

2008-01-07 Thread Igor Vaynberg
life is change. > > > - Original Message > From: Igor Vaynberg <[EMAIL PROTECTED]> > To: users@wicket.apache.org > Sent: Monday, January 7, 2008 1:55:16 PM > Subject: Re: rendering a panel > > > panel2 should use a detachable model, that way it automatically >

Re: rendering a panel

2008-01-07 Thread Igor Vaynberg
tabbedpanel.gettabs().add(new tab(.)); -igor On Jan 7, 2008 2:50 PM, Beyonder Unknown <[EMAIL PROTECTED]> wrote: > > Hi there. No. I just use plane tabbedPanel. But the Button:onSubmit() of > Panel1, i can reference to the tabbedPanel, and I thought originally, if I > add something in the

Re: UploadProgessBar in a WizardStep?

2008-01-07 Thread Igor Vaynberg
it will require refactoring and api breaks. please add an issue and we will address at 1.4 timeframe -igor On Jan 7, 2008 7:31 PM, mfs <[EMAIL PROTECTED]> wrote: > > Guys, > > Any solution to using the UploadProgressBar within a WizardStep..? the > ProgressBar constructor requires a Form and get

Re: pageContext.getErrorData()?

2008-01-08 Thread Igor Vaynberg
see session.getfeedbackmessages() -igor On Jan 8, 2008 8:34 AM, William Hoover <[EMAIL PROTECTED]> wrote: > Is there a wicket equivalent to pageContext.getErrorData()? > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For ad

Re: DataView and Checkboxs: Dummy question

2008-01-08 Thread Igor Vaynberg
looks fine, the only minor tweak i would do is that since the check box model is inner nonstatic class it probably has access to the selected set already, so prob no need to pass it in. -igor On Jan 8, 2008 3:46 AM, Alan Romaniuc <[EMAIL PROTECTED]> wrote: > > Hi, > > A dummy question, or sugges

Re: Changing the year of a DatePicker

2008-01-08 Thread Igor Vaynberg
imho this should be enabled by default... -igor On Jan 8, 2008 12:07 AM, Gerolf Seitz <[EMAIL PROTECTED]> wrote: > Hi Martijn, > if you override DatePicker#enableMonthYearSelection and let it return true, > a month and year selector is available. > just click on the current date (eg. January 200

Re: Script in RenderHead method of AjaxFormChoiceComponentUpdatingBehavior needs fixing

2008-01-08 Thread Igor Vaynberg
king. > Do i need to open a jira for this. > > > Regards > Dipu > > > > > On Jan 4, 2008 5:01 PM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > > > ajaxformchoicecomponentupdatingbehavior or something similar... > > > > -

Re: JMeter load testing and Ajax - is it possible

2008-01-08 Thread Igor Vaynberg
its on the end of every message that is on this list - > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] -igor On Jan 8, 2008 10:00 AM, anita nichols <[EMAIL PROTECTED]> wrote:

Re: pageContext.getErrorData()?

2008-01-08 Thread Igor Vaynberg
10:07 AM, Hoover, William <[EMAIL PROTECTED]> wrote: > I didn't see any methods in FeedbackMessages for: > > pageContext.getErrorData().getStatusCode(); > pageContext.getErrorData().getThrowable(); > ... > > Am I missing something? > > > -Original Me

Re: pageContext.getErrorData()?

2008-01-08 Thread Igor Vaynberg
eptions that may have been thrown. Where would I retrieve > this data? > > BTW, thanks your assistance! > > -Original Message- > From: Igor Vaynberg [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, January 08, 2008 1:12 PM > To: users@wicket.apache.org

Re: JMeter load testing and Ajax - is it possible

2008-01-08 Thread Igor Vaynberg
ed that 2 times won't work. > Is anyone have authority to unsubscribe me? > > > On Jan 8, 2008 10:05 AM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > > > its on the end of every message that is on this list > > > > --

Re: Wickettester and session?

2008-01-08 Thread Igor Vaynberg
for springwebapplication you are used to mean springwebapplicationfactory -igor On Jan 8, 2008 2:01 PM, cricdigs <[EMAIL PROTECTED]> wrote: > > Hi, > > I have the same issue. If I use ZeuzGroupApplication.class I get the known > issue of ClassCastException and if I use the new ZeuzGroupApplicat

Re: Wickettester and session?

2008-01-08 Thread Igor Vaynberg
spring web application expects the spring container to be available. so you need to setup that first and make sure the tester can get to it -igor On Jan 8, 2008 2:17 PM, cricdigs <[EMAIL PROTECTED]> wrote: > > Thanks for your quick reply. But sorry, not sure what you mean. This is my > WicketTes

Re: Simple question

2008-01-09 Thread Igor Vaynberg
this seems a little odd that the back button itself causes the constructor to be invoked agian. that would mean that the browser never actually caches the page at all and on the back button issues another request to the server. can you confirm that this is indeed what is happening? -igor On Jan

Re: popup problem

2008-01-09 Thread Igor Vaynberg
use the public MyPopupPage(PageParameters params) constructor -igor On Jan 9, 2008 3:41 AM, palun <[EMAIL PROTECTED]> wrote: > > Hi all, > > I am trying to open a popup window from a page. Code looks like so: > > PopupSettings popupSettings = new PopupSettings(PageMap >

Re: DiskPageStore improvements for 1.3.1

2008-01-09 Thread Igor Vaynberg
On Jan 9, 2008 5:09 AM, Matej Knopp <[EMAIL PROTECTED]> wrote: > > What's new? Imagine a simplified environment, cluster with two nodes > (NodeA and NodeB). All sessions from a NodeA are replicated to NodeB > and vice versa. > > When a page instance is being replicated from NodeA to NodeB, it is >

Re: Download Link Problem

2008-01-09 Thread Igor Vaynberg
i dont see why you would want to use wicket for something that is much simpler achieved with a servlet -igor On Jan 9, 2008 5:17 AM, marcus dickerhof <[EMAIL PROTECTED]> wrote: > Hi, > do you any need further infos? Is this possible in wicket anyways? > > Thanks! > > Best regards > Marcus > > >

Re: JMeter load testing and Ajax - is it possible

2008-01-09 Thread Igor Vaynberg
yes it is important to set the Wicket-Ajax header. this is how wicket knows the request is a wicket ajax request as opposed to a normal request. -igor On Jan 9, 2008 4:17 AM, Peter Thomas <[EMAIL PROTECTED]> wrote: > On 1/8/08, Peter Thomas <[EMAIL PROTECTED]> wrote: > > > > On 1/8/08, Martijn Da

Re: Wickettester and session?

2008-01-09 Thread Igor Vaynberg
create the spring application context or just a mock - depending on your testing needs, then before giving the springwebapplication to the tester call setApplicationContext(yourcontext); on it. -igor On Jan 9, 2008 12:46 PM, cricdigs <[EMAIL PROTECTED]> wrote: > > I am not sure how to do that...

Re: popup problem

2008-01-09 Thread Igor Vaynberg
huh? -igor On Jan 9, 2008 12:50 PM, palun <[EMAIL PROTECTED]> wrote: > > But how do I change this part if I want to use a constructor with arguments? > > > item.add(new BookmarkablePageLink("popupButtonLink", > > MyPopupPage.class, > > params).setPopupSettings(pop

Re: popup problem

2008-01-09 Thread Igor Vaynberg
exception is happening in your code...what is on line MyPopupPage.java:12 ? -igor On Jan 9, 2008 1:11 PM, palun <[EMAIL PROTECTED]> wrote: > > WicketMessage: Can't instantiate page using constructor public > com.mycompany.pages.wicketutils.MyPopupPage(org.apache.wicket.PageParameters) > and argu

Re: popup problem

2008-01-09 Thread Igor Vaynberg
try getString("header") i think get() returns String[] -igor On Jan 9, 2008 2:09 PM, palun <[EMAIL PROTECTED]> wrote: > > That would be the first line in the constructor: > > public MyPopupPage(PageParameters params) { > add(new Label("header", (String) params.get("header"))); <--

Re: 2-pass rendering

2008-01-09 Thread Igor Vaynberg
see iresponsefilter -igor On Jan 9, 2008 4:27 PM, blueneogeo <[EMAIL PROTECTED]> wrote: > > I'm having an unusual case in which I would like to use javascript to load > and write pages into divs (somewhat ajax-like, but on other websites, as an > included tool). In order to do so, I want the ren

Re: DiskPageStore improvements for 1.3.1

2008-01-09 Thread Igor Vaynberg
this cant be accomplished transparently. we would need our own network connection, node discovery, blah blah blah. loses a bit of appeal. -igor On Jan 9, 2008 10:24 PM, Jonathan Locke <[EMAIL PROTECTED]> wrote: > > > Ideally, NodeB ought to "catch up" when it joins the cluster by > syncing the c

Re: How can I validate required formComponents after page load?

2008-01-10 Thread Igor Vaynberg
how about just page.onbeforerender() { fieldlastname.valdiate(); } -igor On Jan 10, 2008 2:07 AM, thomas jaeckle <[EMAIL PROTECTED]> wrote: > > Hello Guys. > > I am trying to validate my RequiredTextFields directly when/after the Page > is loaded so that I can display the required errormessage i

Re: Force page rendering ?

2008-01-10 Thread Igor Vaynberg
see RestartResponseException -igor On Jan 10, 2008 11:04 AM, mfs <[EMAIL PROTECTED]> wrote: > > I think i didnt conveyed my message properly...i had this question in > comparison to the conventional approach where you could do a dispatch to > another page by doing forward() or sendRedirect() or

Re: Wicket Session backed by something other than HTTP Session

2008-01-10 Thread Igor Vaynberg
On Jan 10, 2008 11:13 AM, mnwicket <[EMAIL PROTECTED]> wrote: > > How easy / feasible would it be to have the Wicket session backed by an > applications own structure? as easy as returning your own implementation of ISessionStore from Application.newSessionStore() -igor > -- > View this messa

Re: WicketServlet vs. WicketFilter

2008-01-10 Thread Igor Vaynberg
sometimes you might want to chain preprocessors/postprocessors around wicket - in that case you have to use filters since you cant chain servlets. also wicket filter is much better at handling /* mapping generally i would recommend wicketfilter. wicketservlet is there as a backup for situations w

Re: Resizable and reorderable grid components

2008-01-10 Thread Igor Vaynberg
On Jan 10, 2008 12:56 PM, Evan Chooly <[EMAIL PROTECTED]> wrote: > this is very cool to start. i'm working on a similar component. my biggest > complaint is that it seems odd to me that commercial component demos are > being hosted on wicket stuff. but that just might be me. dont really see thi

Re: Unable to Upload file using AjaxFormSubmitBehavior

2008-01-10 Thread Igor Vaynberg
file uploads using ajax are not supported -igor On Jan 10, 2008 4:59 PM, Haritha Juturu <[EMAIL PROTECTED]> wrote: > Hi Everyone > I'm trying to upload a file using AjaxFormSubmitBehavior . > When i submit the form , the defined onSubmit() method is not being called. > Can anyone tell me why th

Re: the flow of wicket

2008-01-10 Thread Igor Vaynberg
you guys want to know about internal implementation details. it has no publically exposed api, so why should you care? why should we document something that can change without affecting our users? does the jee spec detail how the request gets to the servlet? no, that is left up to the implementor o

Re: the flow of wicket

2008-01-10 Thread Igor Vaynberg
; -- > The only constant in life is change. > > - Original Message > From: Igor Vaynberg <[EMAIL PROTECTED]> > To: users@wicket.apache.org > > Sent: Thursday, January 10, 2008 5:09:00 PM > Subject: Re: the flow of wicket > > > you guys want to know about intern

Re: Resizable and reorderable grid components

2008-01-10 Thread Igor Vaynberg
On Jan 10, 2008 5:51 PM, Evan Chooly <[EMAIL PROTECTED]> wrote: > Is that not the "official" website for the wicket stuff projects? it is, _amongst other things_ -igor > Just > kinda struck me as odd is all. > > On Jan 10, 2008 6:26 PM, Igor Vaynberg <[E

Re: Dont refresh webpage on Form Submit

2008-01-10 Thread igor . vaynberg
and what do you want instead? -igor On 1/10/08, Haritha Juturu <[EMAIL PROTECTED]> wrote: > Hi Everyone, > I have a Form object in my wicket page. After the onSubmit() method is > called the webpage is refreshed. > Is there anyway i can stop the webpage reload after the onSubmit() method is > exe

Re: How can I validate required formComponents after page load?

2008-01-10 Thread Igor Vaynberg
onbeforerender { textfield.error(RequiredValidator.class.getSimpleName()); } -igor On Jan 10, 2008 11:23 PM, thomas jaeckle <[EMAIL PROTECTED]> wrote: > > > > igor.vaynberg wrote: > > > > how about just page.onbeforerender() { fieldlastname.valdiate(); } > > > > -igor > > > Ok, thanks .. > But

Re: FormComponentPanel and setConvertedInput()

2008-01-11 Thread Igor Vaynberg
first you should implement convertintput() not setconvertedinput(). inside your impl of convertinput() you should call setconvertedinput() with the right value. this is indeed important as the converted input is what is passed into validators. so if you need your panel to support validators you wi

Re: Wickettester and session?

2008-01-11 Thread Igor Vaynberg
not sure where to point you... -igor On Jan 11, 2008 9:46 AM, cricdigs <[EMAIL PROTECTED]> wrote: > > > Ah that did the trick Igor! Thank you so much! > > I am still having some issues getting to child components. Can you point me > in the right direction there? > > Thanks again! > > > > > igor.v

Re: wrong properties displayed

2008-01-11 Thread Igor Vaynberg
please provide a quickstart and open a jira issue. -igor On Jan 11, 2008 4:30 AM, Michael Sparer <[EMAIL PROTECTED]> wrote: > > Hi, > > On a WebPage, I'm using a TabbedPanel containing different implementations > of MyAbstractPanel. MyAbstractPanel.html contains a key="headline">. Now I want a

Re: WicketServlet vs. WicketFilter

2008-01-11 Thread Igor Vaynberg
yes there is some overhead. but it is much better then the servlet. the filter can let the resource fall through and be served by the servlet cotainer. if you use a servlet then the servlet itself has to stream the resource out. guess which will have a more optimized implementation... -igor On J

Re: the flow of wicket

2008-01-11 Thread Igor Vaynberg
only 67? :) -igor On Jan 11, 2008 9:34 PM, David Leangen <[EMAIL PROTECTED]> wrote: > > > > It would be faster if you can help us. :) > > > > sure, it would probably be faster if i coded your project for you too :) > > Cool! > > Since you're now doing this kind of volunteer work, Igor, how about

Re: the flow of wicket

2008-01-12 Thread Igor Vaynberg
then you. -igor > > Thank you, > > - Paolo > > > > > On Jan 11, 2008 2:09 AM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > > > you guys want to know about internal implementation details. it has no > > publically exposed api, so why should you care?

Re: Type safe roles for AUTH-ROLES?

2008-01-12 Thread Igor Vaynberg
wicket-auth-roles is just an example. its not really meant to be something you drop into your application, for that there is wicketstuff-wasp and wicketstuff-swarm -igor On Jan 12, 2008 9:14 AM, Jeremy Thomerson <[EMAIL PROTECTED]> wrote: > I have several successful Wicket projects going, and in

Re: the flow of wicket

2008-01-12 Thread Igor Vaynberg
On Jan 12, 2008 11:11 AM, Dmitry Kandalov <[EMAIL PROTECTED]> wrote: > On Saturday 12 January 2008 19:56:41 Igor Vaynberg wrote: > > I mostly agree but request processing is more exposed to user than xml parser. > I mean it's easier to came across AjaxRequestTarget,

Re: London Wicket Event - Schedule/Bigger Room

2008-01-12 Thread Igor Vaynberg
it would be great if you guys could videotape the talks and share them :) -igor On Jan 12, 2008 2:33 PM, jweekend <[EMAIL PROTECTED]> wrote: > > We seem to be back up to the original interest levels again for our Feb 6th > London Wicket Users Group event. As we had already pretty much hit our >

Re: Resizable and reorderable grid components

2008-01-12 Thread Igor Vaynberg
> > the value of wicketstuff.org/marketplace for such components, > > > commercial or not its still stuff for wicket > > > > > > > > > On 1/11/08, Evan Chooly <[EMAIL PROTECTED]> wrote: > > > > Is that not the "official" website fo

Re: the flow of wicket

2008-01-12 Thread Igor Vaynberg
irequestcycleprocessor, in fact it might even go away at a later release. -igor On Jan 12, 2008 11:56 AM, Dmitry Kandalov <[EMAIL PROTECTED]> wrote: > On Saturday 12 January 2008 23:25:43 Igor Vaynberg wrote: > > sure, and all you need to know is that you subclass > > reques

Re: Resizable and reorderable grid components

2008-01-12 Thread Igor Vaynberg
But a showcase of components being used beyond the rather vanilla > components on the examples page might have made the conversations easier. > > > On Jan 12, 2008 7:25 PM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > > > On Jan 12, 2008 12:50 PM, Evan Chooly <[EMAIL PROT

Re: Adding breadcrumbs

2008-01-13 Thread Igor Vaynberg
class abstract basepage extends page { private list history=new arraylist(); public basepage() { add(new listview("history", new PropertyModel(this, "history")) { protected void onpopulateitem(listitem item) { link link=new link("link", item.getmodel()) {

Re: Resizable and reorderable grid components

2008-01-13 Thread Igor Vaynberg
of it was hard to do by > any stretch. But seeing how easy/common it is to do such things before > having written code would've greased the skids with the pro-tapestry > participants. But wicket "won" so it wasn't a showstopper. Just would've > been nice. >

Re: Cannot create Spring Bean via Proxy in Wicket

2008-01-13 Thread Igor Vaynberg
if you could provide a quickstart maybe someone can look into it -igor On Jan 13, 2008 1:34 PM, Sergey Podatelev <[EMAIL PROTECTED]> wrote: > Hello, > > My WebApplication extends SpringWebApplication and I use proxy-based > approach for bean instantiation. > I'm using JDK1.4, so I'm unable to ju

Re: Autocomplete Textfield gets submitted twice on mouse click

2008-01-13 Thread Igor Vaynberg
file a bug report please -igor On Jan 13, 2008 2:44 PM, ckuehne <[EMAIL PROTECTED]> wrote: > > Just in case anybody is interested: the problem was, that clicking with the > mouse fired the onchange > event of the auto complete field. The javascript responsible for handling > the autocomplete fir

Re: the flow of wicket

2008-01-13 Thread Igor Vaynberg
On Jan 13, 2008 3:28 PM, Fabio Fioretti <[EMAIL PROTECTED]> wrote: > Documenting Wicket's inner implementations and strategies, beyond its > API, is desirable and a huge plus for hardcore developers. i wouldnt think hardcore developers would be afraid of setting a breakpoint and walking the code.

Re: the flow of wicket

2008-01-14 Thread Igor Vaynberg
On Jan 14, 2008 6:08 AM, Alex Jacoby <[EMAIL PROTECTED]> wrote: > I've hit exactly this type of issue -- you try to override one of the > public methods, and it turns out that the object isn't fully > initialized yet, so you can't do what you'd hoped to. do you have the example so we can do someth

<    2   3   4   5   6   7   8   9   10   11   >