Re: Testing wicket pages in isolation (wickettester)

2010-05-13 Thread Kent Tong
Hi Vincent, You can use a page navigator interface. See the example Checking if a Wicket page is passing the correct data to the next page on http://wicketpagetest.sourceforge.net/examples.html -- Kent Tong, Msc, PMP, CISSP, ITIL Foundation Senior manager of IT dept, CPTTM Authorized training

Re: Testing wicket pages in isolation (wickettester)

2010-05-13 Thread Vincent Lussenburg
Hi Kent, Oh yeah, that's also a possibility. However, the constructor code would still be executed here. So I'd still needs to records some mocks for that. Thanks for your reply! Groet, Vincent On May 13, 2010, at 8:03, Kent Tong k...@cpttm.org.mo wrote: Hi Vincent, You can use a page

setter on model object not called

2010-05-13 Thread Douglas Ferguson
I am seeing some unexpected behavior. I have a page with a text field and a link on it. The text field is backed with a property model The text field has an AjaxFormComponentUpdatingBehavior on it. The link then persists the object that the property model is wrapping. I never see the setter get

Re: setter on model object not called

2010-05-13 Thread Cemal Bayramoglu
Send a QuickStart (simplest one you can create that demonstrates this) and we'll take a look. Regards - Cemal jWeekend OO Java Technologies, Wicket Consulting, Development, Training http://jWeekend.com On 13 May 2010 08:17, Douglas Ferguson doug...@douglasferguson.us wrote: I am seeing some

Which url coding strategy to make more restful in page with navigator?

2010-05-13 Thread cleverpig
hi,everybody! I checked a variety url coding strategies, but did not find one that is very appropriate when using datatable and navigator in page. HybridUrlCodingStrategy might also be, but it can not display the page parameter in url, can not be true bookmarkable. And the version number int its

Re: setter on model object not called

2010-05-13 Thread Douglas Ferguson
I figured it out. If the object doesn't have a getter, the setter won't be called, and instead it just injects the value into the field. That seems like a bug, do I need to prepare a quickstart? D/ On May 13, 2010, at 2:51 AM, Cemal Bayramoglu wrote: Send a QuickStart (simplest one you can

Re: Survey -- Tool Success Theory Empirical Study - Apache Wicket

2010-05-13 Thread Karolina Rusin
It is valid :) It's my master thesis research. Mail me if you need more details about it ;) Regards, Karolina Rusin -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Survey-Tool-Success-Theory-Empirical-Study-Apache-Wicket-tp2124127p2197259.html Sent from the Wicket

Re: setter on model object not called

2010-05-13 Thread Cemal Bayramoglu
It sounds like you are using a PropertyModel. If so, that is the expected behaviour, provided by the property resolver it employs. If there is no accessor (getter), the field, even if private is accessed (fields[i].setAccessible(true);). This is by design, not a bug, but whether it's a good idea

Re: Image Upload Using TinyMCE Within Wicket Framework

2010-05-13 Thread Michał Letyński
Hi. Its commited to trunk and in pom we have 1.4.7-SNAPSHOT so it should be available ... W dniu 2010-05-12 15:23, Muro Copenhagen pisze: Hi again... I guess a new release of wicket-stuff tinymce has to be made in order to use it... The current release 1.4-rc7 misses the changes you have

Wicket-Stuff ObjectAutoCompleteField component inside a ListView

2010-05-13 Thread Steve Hiller
Hi All, Has anyone tried using the Wicket-Stuff ObjectAutoCompleteField component inside a ListView? The search text field form input control is not created in the HTML output. If I make a single ObjectAutoCompleteField outside of a ListView then the input control is created. Thanks, Steve

Bigger sites running on wicket?

2010-05-13 Thread Zoltan Luspai
Dear All, I'm quite fond of wicket so far, but to convince my boss further using it: I would need some samples of bigger sites or portals running on wicket. If you know such - something like 100s of concurrent users, or big number of users- please send me links and information. If possible

ListView highlight selected row

2010-05-13 Thread JeroenWolff
Hi, i'm a wicket newbee...i've got a ListView with a AjaxLink so the selected 'customer' details will be shown in a detailed panel. But now i would like to highlite the selected 'customer' row in de ListView so the user can see which row he/she selected. How can i do this? Thanks, Jeroen --

Re: Bigger sites running on wicket?

2010-05-13 Thread MZemeck
Some things I've seen on this forum...Wal-Mart's mobile site, lasvegas.com Notice: This communication, including any attachments, is intended solely for the use of the individual or entity to which it is addressed. This communication may contain information that is protected from disclosure

Re: Bigger sites running on wicket?

2010-05-13 Thread Rangel Preis
Take a look at Websites based on Wickethttps://cwiki.apache.org/WICKET/websites-based-on-wicket.html( https://cwiki.apache.org/WICKET/websites-based-on-wicket.html). The project I'm working on, http://ewmix.com/, has about 100 concurrent users, but this would involves much more than just a

Re: Which url coding strategy to make more restful in page with navigator?

2010-05-13 Thread Igor Vaynberg
if you use a bookmarkable paging navigator then even the default mounting strategy will work. you can probably find one by searching the list. -igor On Thu, May 13, 2010 at 12:56 AM, cleverpig greatclever...@gmail.com wrote: hi,everybody! I checked a variety url coding strategies, but did not

Re: ListView highlight selected row

2010-05-13 Thread Igor Vaynberg
add(new listview() { item newitem(...) { return new item(..) { oncomponenttag(tag) { super.oncomponenttag(tag); if (getmodelobject().equals(selectedobject) { tag.put(class, selected); -igor On Thu, May 13, 2010 at 5:47 AM,

Required component depending on other's component value

2010-05-13 Thread Xavier López
Hi, I have a Form with some components that are required depending on some other component's value. Let's put for example a RadioGroup with values City and Country. There are two DropDownChoices with Cities and Countries, and only the selected one in the RadioGroup is required. It's important

Google Guice and Wicket

2010-05-13 Thread Alexander Monakhov
Hi, guys. I'm trying to use wicket-guice extension in my wicket application. My application instantiates some services in my session implementation and passes some parameters to it when user is authenticated. I'm trying to inject these services using Guice. But they're not injected in my session

Re: Google Guice and Wicket

2010-05-13 Thread Igor Vaynberg
the answer is in the error message ...apply com.google.inject.servlet.GuiceFilter as a servlet filter... you need that filter so guice can define web-related scopes -igor On Thu, May 13, 2010 at 8:00 AM, Alexander Monakhov domin...@gmail.com wrote: Hi, guys. I'm trying to use wicket-guice

Re: Required component depending on other's component value

2010-05-13 Thread Igor Vaynberg
yes, thats what IFormValidators are for... -igor On Thu, May 13, 2010 at 7:56 AM, Xavier López xavil...@gmail.com wrote: Hi, I have a Form with some components that are required depending on some other component's value. Let's put for example a RadioGroup with values City and Country. There

Re: Google Guice and Wicket

2010-05-13 Thread Alexander Monakhov
Great! Thanks! Best regards, Alexander.

Shared Components

2010-05-13 Thread Ayodeji Aladejebi
Hi, Please any concept of shared components in Wicket. If I have a component that the content (model) will always be the same across all sessions and users, is there a wicket api approach for ensuring we only have one of such components throughout the application scope -- Aladejebi Ayodeji A.,

Re: Shared Components

2010-05-13 Thread Fernando Wermus
Despite frameworks as jsf, wicket manages lightweight components. It would be adding more complexity to something that is pretty simple. Furthermore, I don't think you will performance better. The important fact in any case is that the browser caches it. On Thu, May 13, 2010 at 12:38 PM, Ayodeji

Re: Shared Components

2010-05-13 Thread Igor Vaynberg
the complexity cost mentioned is too high - namely since a single component instance exists on application level all code you write for that component would have to be threadsafe. -igor On Thu, May 13, 2010 at 8:49 AM, Fernando Wermus fernando.wer...@gmail.com wrote: Despite frameworks as jsf,

Re: warp persist, guice wicket: use warp persist during wicket application startup to load db objects

2010-05-13 Thread nino martinez wael
Maybe mark your servlet listener as transactional? 2010/5/11 Christoph Grün chris...@gmx.at: Hi all,  I am using Wicket together with Guice and Warp Persist/Servlet. I have registered the PersistenceService in the contextInitialized method. However, I would like to do some data loading from

RE: Shared Components

2010-05-13 Thread Frank Silbermann
I don't understand the question. I may be viewing the same web page as you, but that doesn't mean we should share the same computer display monitor. If there are two copies of the display (yours and mine), then there should be two copies of the display's components. What's wrong with just

Re: Shared Components

2010-05-13 Thread Ayodeji Aladejebi
For example, I have a Label that displays data using a ReadOnlyModel. That data will NEVER be written to by any user. they only read from it EVER. ONLY ONE user can write to it (admin maybe) Thats what I mean. On Thu, May 13, 2010 at 5:28 PM, Frank Silbermann frank.silberm...@fedex.com wrote:

Request Https page

2010-05-13 Thread sakthi vel
Hello, Can anyone tell how to request a page using https (Login page).

Xml as markup file

2010-05-13 Thread sakthi vel
Hello, When I tried to use XML as markup file, the xml elements are not displayed and characters are alone displayed. Could anyone tell how to display the XML elements along with the characters.

Re: Xml as markup file

2010-05-13 Thread Jeremy Thomerson
Where are you not seeing them displayed? Some browsers display XML just like HTML - so you will only see the characters and won't see the tags. Have you tried to view source? -- Jeremy Thomerson http://www.wickettraining.com On Thu, May 13, 2010 at 12:25 PM, sakthi vel vela@gmail.com

Re: Shared Components

2010-05-13 Thread Igor Vaynberg
is this a performance bottleneck for you? because until you show me how having 1000 of these labels is stalling your cpu or causing memory problems in a profiler the rest of this conversation is pretty pointless. -igor On Thu, May 13, 2010 at 9:34 AM, Ayodeji Aladejebi aladej...@gmail.com wrote:

Re: Request Https page

2010-05-13 Thread Igor Vaynberg
see HttpsRequestCycleProcessor -igor On Thu, May 13, 2010 at 10:22 AM, sakthi vel vela@gmail.com wrote: Hello, Can anyone tell how to request a page using https (Login page). - To unsubscribe, e-mail:

Re: CheckGroup and ListView

2010-05-13 Thread msalman
And it was as simple as that. Thank you so much. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/CheckGroup-and-ListView-tp1886879p2197959.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: warp persist, guice wicket: use warp persist during wicket application startup to load db objects

2010-05-13 Thread Edward Zarecor
I think this questions was resolved on the Guice list. Correct me if I'm wrong. This is the thread: http://groups.google.com/group/google-guice/browse_thread/thread/78ffb08353f4dcf The thread was somewhat messy, so the upshot is: A good worked example of persistence outside the context of a

wicketstuff-prototype download

2010-05-13 Thread Hbiloo
Hi, Could someone please tell me where I can download the wicketstuff-prototype library. I want to use Drag and Drop for Wickethttp://code.google.com/p/wicket-dnd/(DND) which needs this library. I'm using Wicket 1.4. Regards, Hbiloo

RE: wicketstuff-prototype download

2010-05-13 Thread Tim L Casey
On the db side we have application error codes which are easy enough to propagate. We did not do this through 5.0. The php part of it I don't think we should touch. tim -Original Message- From: azzeddine.dad...@gmail.com [mailto:azzeddine.dad...@gmail.com] On Behalf Of Hbiloo Sent:

[OT] Annotating plaintext with markup tags

2010-05-13 Thread Kaspar Fischer
Hi everybody, I need to annotate spans of a given plaintext with markup tags, for example: Tagger t = new Tagger(I need a library to annotate plaintext.); // Character indices: 0123456789012345678901234567890123456789 t.annotate(0, 1, i); t.annotate(2, 16, a, href=\#\); t.annotate(9,

Re: Which url coding strategy to make more restful in page with navigator?

2010-05-13 Thread cleverpig
thanks,igor! but where can I find out this bookmarkable paging navigator? I only get it:http://apache-wicket.1842946.n4.nabble.com/PageNavigator-Vs-Nice-Url-td1848271.html#a1848272 but that is a old track about nice url and paging navigator,including a lot discuss without final result.

Re: wicketstuff-prototype download

2010-05-13 Thread Sven Meier
Hi, either use maven to build wicket-dnd or do what maven does - look in the right places: http://code.google.com/p/wicket-dnd/source/browse/trunk/wicket-dnd/pom.xml Look for repository: http://wicketstuff.org/maven/repository/ Together with dependency this results in: