Re: JFreeChart component

2008-10-28 Thread Nino Saturnino Martinez Vazquez Wael
Cool, why not put it in wicket stuff somewhere? I think theres some jfree stuff in there jwray wrote: Hi, I recently developed a component that displays a chart generated from JFreeChart and includes the associated image map that allows the chart to generate tooltips and respond to user

Re: Yahoo Menus

2008-10-28 Thread Nino Saturnino Martinez Vazquez Wael
You should be able to override the css by specifying a more direct style.. like if it says .menu { width:10em; } you could wrap it in a span and say span .menu { width:5em; } It's something like this.. wadi wrote: Hi All!I'm building an application and I would like to use yahoo dropdown

Migration to 1.4 - generic headache

2008-10-28 Thread Artur W.
Hi Guys, In the weekend I tried to migrate our application to wicket 1.4. I was very happy to use generics with wicket but now I frustrated. I love Wicket and I know it is nobody fault (it java fault! :)) but the generics sucks. Our application is quite big, more than one thousand classes and

Re: Illegal State Exception on DefaultTeeModel.removeNodeFromParent

2008-10-28 Thread Matej Knopp
Might be a big. Jira issue with attached quickstart project to reproduce it would be helpful. -Matej On Mon, Oct 27, 2008 at 11:24 AM, Hannes Schubert [EMAIL PROTECTED] wrote: Hi all, if I call removeNodeFromParent for the last (and only) child node of a parent node on second or deeper

RE: Migration to 1.4 - generic headache

2008-10-28 Thread Artur W.
Hi Stefan! Stefan Lindner wrote: Use a Void Link (LinkVoid) or create your own Link wrapper class Class MyLink extends LinkVoid I know I can create a wrapper but it is a ugly was to solve my problem :/ The Void think is a good idea but it doesn't work everywhere. For example this

Re: Re: Spring and servlet config instead of filter

2008-10-28 Thread Joni Lahtinen
Thank you Igor. Works fine without spring web application factory. (just commented it out from web.xml). Igor Vaynberg wrote: are you running on jdk1.4? because that is pretty much the only reason to need to use spring web application factory... -igor On Fri, Oct 24, 2008 at 3:14 AM, Joni

RE: Migration to 1.4 - generic headache

2008-10-28 Thread Stefan Lindner
In this cases use new AjaxButton(cancelButton) { @Override protected void onSubmit(AjaxRequestTarget target, Form? form) { modal.close(target); } } -Ursprüngliche Nachricht- Von: Artur W. [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 28. Oktober

Re: Migration to 1.4 - generic headache

2008-10-28 Thread Nino Saturnino Martinez Vazquez Wael
But In the form case, It's really nice to be able todo form.getModelObject which if you use generics will return the right object with typesafety... Unless you have forms which contain different classes, but that would not make much sense.. Stefan Lindner wrote: In this cases use new

Re: DataTable cell link

2008-10-28 Thread James Carman
Here's an example where I put a remove link in a DefaultDataTable cell: https://wicketopia.svn.sourceforge.net/svnroot/wicketopia/trunk/example/src/main/java/org/wicketopia/example/web/page/HomePage.java On Tue, Oct 28, 2008 at 6:33 AM, dlipski [EMAIL PROTECTED] wrote: Hi I have one short

Re: few (not only) AutoCompleteTextField questions

2008-10-28 Thread dlipski
dlipski wrote: Hi, First, problem description: Recently I was asked to change DropDownChoice field into AutoCompleteTextField. Everything was ok untill I noticed that old DropDownChoice field has attached OnChangeAjaxBehavior. Ofcourse what works well with DropDownChoice doesnt work

OnChangeAjaxBehavior receives only first input character

2008-10-28 Thread Daniele Dellafiore
Hi all. I am using an OnChangeAjaxBehavior on a textField to filter contents of a table. My code is very similar to this example: http://www.wicket-library.com/wicket-examples/ajax/on-change-ajax-behavior The problem I have is that the first input character is received and I can get it in the

Change row appearance in a DataGrid

2008-10-28 Thread bjolletz
Hi! I've just started learning Wicket and like it very much so far. I've found the very nice DataGrid component, for which I have a question: Is it possible to alter the appearance of a row in the grid in some custom way? What I want to do is that depending on my row data, I want all text in

Re: Change row appearance in a DataGrid

2008-10-28 Thread James Carman
Override newRowItem() and decorate it however you want (using AttributeAppender behavior perhaps). On Tue, Oct 28, 2008 at 9:37 AM, bjolletz [EMAIL PROTECTED] wrote: Hi! I've just started learning Wicket and like it very much so far. I've found the very nice DataGrid component, for which I

[Wicketstuff jQuery] not compiling?

2008-10-28 Thread Nino Saturnino Martinez Vazquez Wael
Hi Guys The JQuery stuff project arent compiling, seems to be dependant on Wicket 1.4 and using generics. But the pom uses this parent: groupIdorg.wicketstuff/groupId artifactIdwicketstuff-parent/artifactId version2-nojavadoc/version Which includes wicket 1.3.1... Whats

Re: DataTable cell link

2008-10-28 Thread dlipski
Hi I dont know wicketopia project (and any of its classes like FragmentColumn) so I can misunderstand your idea but as far as I am able to read that code It looks like you are adding a link to the table cell, not making a cell itself a link. If I understand your code it is familar to:

Re: DataTable cell link

2008-10-28 Thread James Carman
I apologize. I must have misunderstood your question. On Tue, Oct 28, 2008 at 9:42 AM, dlipski [EMAIL PROTECTED] wrote: Hi I dont know wicketopia project (and any of its classes like FragmentColumn) so I can misunderstand your idea but as far as I am able to read that code It looks like you

Re: Change row appearance in a DataGrid

2008-10-28 Thread bjolletz
Thanks for the very quick reply! I may be stupid but DataGrid doesn't seem to have a newRowItem() method to override. I did some googling and found that you can do just this for DataGridView, but I'm using DataGrid, which does not extend from AbstractGridView (which has the newRowItem method),

Re: OnChangeAjaxBehavior receives only first input character

2008-10-28 Thread Nino Saturnino Martinez Vazquez Wael
Hi Daniele Provide your code, java and html cutout, it's clearly not similar then it would work.. Daniele Dellafiore wrote: Hi all. I am using an OnChangeAjaxBehavior on a textField to filter contents of a table. My code is very similar to this example:

wicket and 508 compilance

2008-10-28 Thread miro
I am new to wicket and want to build web application using wicket, my application should be 508 compliance , so want to know using wicket for any reason can break 508 compliance ? -- View this message in context: http://www.nabble.com/wicket-and-508-compilance-tp20208921p20208921.html Sent

Re: wicket and 508 compilance

2008-10-28 Thread Nino Saturnino Martinez Vazquez Wael
You mean like WAI triple A? http://www.w3.org/WAI/WCAG1AAA-Conformance No it won't break it but it wont enforce it either.. miro wrote: I am new to wicket and want to build web application using wicket, my application should be 508 compliance , so want to know using wicket for any reason can

Re: Yahoo Menus

2008-10-28 Thread wadi
Great!Thanks!I also had to add on the init method of my app getMarkupSettings().setStripWicketTags(true); because if not it won't render the submenus! Nino.Martinez wrote: You should be able to override the css by specifying a more direct style.. like if it says .menu {

Re: no title in ExternalLink

2008-10-28 Thread Steve Swinsburg
Yeah you can do that, you can do it heaps of different ways, but why not have a title field on an ExternalLink component, its such a basic attribute that is being missed. See the thread about Wicket and 508 compliance. Steve On 28 Oct 2008, at 15:03, Erik van Oosten wrote: The

Re: wicket and 508 compilance

2008-10-28 Thread Martijn Dashorst
There are lots of ways of making accessibility happening, but throwing more arguments to constructors isn't one of 'm. Ever took a short look at DDC? Instead of taking this narrow vision, perhaps start a discussion of how we can make accessibility easy to implement, while not raping our API?

Re: Nice URL in DataTable

2008-10-28 Thread Jeremy Thomerson
Can you send your mount code and examples of a piece of code that works correctly and one that doesn't? -- Jeremy Thomerson http://www.wickettraining.com On Tue, Oct 28, 2008 at 5:02 AM, Daniele Dellafiore [EMAIL PROTECTED]wrote: Hi. In my app I have mounted a page with

problem with PropertyModel and setDefaultFormProcessing(false) for button

2008-10-28 Thread itayh
Hey, I have a page that contain a hidden form. When the user press on Add Item or Edit Item then I set the visability of the form to true and the user can add details and the OK button save the data and set the visability of the form to false. The problem is if the user press on cancel. I need

Re: problem with PropertyModel and setDefaultFormProcessing(false) for button

2008-10-28 Thread James Carman
Set the name property to in your cancel handler logic? On Tue, Oct 28, 2008 at 11:41 AM, itayh [EMAIL PROTECTED] wrote: Hey, I have a page that contain a hidden form. When the user press on Add Item or Edit Item then I set the visability of the form to true and the user can add details and

Re: wicket and 508 compilance

2008-10-28 Thread Steve Swinsburg
What are you referring to when you say DDC? The Dewey Decimal System? Used by pretty much every library around the world making it really easy to find books? I'd call that accessible. So my vision for wanting to enforce a bit of accessibility on the web is narrow(?), but no one wants to

Re: ajax does not work in IE6 when using domain name. but works with IP

2008-10-28 Thread vkoratek
Any suggestions on this problem please? vkoratek wrote: website runs on apache+resin 3.1.5 and wicket 1.3.3. Load balancer exists. Specifics of the problem are- 1. customer accesses the site from inside their company's network, have a problem. 2. Customer uses IE6. 3. Problem occurs

Re: wicket and 508 compilance

2008-10-28 Thread Steve Swinsburg
lol ok agreed, DropDownChoice is far over the top, but someone let all those methods get through. Perhaps its time to start rolling some up and deprecating others. And getting some examples happening about how best to use the DropDownChoice component. On 28 Oct 2008, at 15:50, James

Re: wicket and 508 compilance

2008-10-28 Thread James Carman
DropDownChoice On Tue, Oct 28, 2008 at 11:48 AM, Steve Swinsburg [EMAIL PROTECTED] wrote: What are you referring to when you say DDC? The Dewey Decimal System? Used by pretty much every library around the world making it really easy to find books? I'd call that accessible. So my vision for

Re: wicket and 508 compilance

2008-10-28 Thread Martijn Dashorst
On Tue, Oct 28, 2008 at 4:48 PM, Steve Swinsburg [EMAIL PROTECTED] wrote: So my vision for wanting to enforce a bit of accessibility on the web is narrow(?), but no one wants to move forward with the most simple of modifications to make it easier to implement accessibility. The most basic of

Re: wicket and 508 compilance

2008-10-28 Thread Steve Swinsburg
For the Javadoc? (please stop being so vague!) No worries, I'll do this up and submit it into a general accessibility Javadoc improvement Jira ticket. Steve On 28 Oct 2008, at 15:57, Martijn Dashorst wrote: On Tue, Oct 28, 2008 at 4:48 PM, Steve Swinsburg [EMAIL PROTECTED] wrote: So

Re: wicket and 508 compilance

2008-10-28 Thread James Carman
I don't think Martijn is intentionally being vague. DDC is a common abbreviation for DropDownChoice among folks within the Wicket community. As for the request for a patch, that's the best way to get your code suggestions merged into the codebase, providing a patch. Please make sure you

Re: problem with PropertyModel and setDefaultFormProcessing(false) for button

2008-10-28 Thread itayh
Did it. It has no affect. I clear the name in the cancel and I also set it to the new value in edit item action. But still after cancel when i try to edit new item I get the old value. jwcarman wrote: Set the name property to in your cancel handler logic? On Tue, Oct 28, 2008 at 11:41

Re: Changing model of TextField with DDC

2008-10-28 Thread Igor Vaynberg
this really looks like a hack :) you should keep the field and text in two different fields, and then in form.onsubmit do the right thing. -igor On Mon, Oct 27, 2008 at 8:32 PM, Ryan [EMAIL PROTECTED] wrote: I have a search page that lets the use enter the search term in a TextField and select

Re: wicket and 508 compilance

2008-10-28 Thread Steve Swinsburg
Well the last post was unclear about which patch he was referring to (Javadoc or codebase). From the previous discussions, it's clear that a patch for a new constructor won't be considered. I will, however, get some information to extend the Javadocs and submit that. Javadco improvement

Write XML response

2008-10-28 Thread Ambrose . Wheatcroft
Hello, I wonder if you can help. I'm trying to send back some XML from an AbstractAjaxBehavior like this: public class MyAjaxBehavior extends AbstractAjaxBehavior { @Override public void onRequest() { String reply = XML document as String.

Re: Migration to 1.4 - generic headache

2008-10-28 Thread Igor Vaynberg
yes it sucks. i agree. personally i prefer code written against wicket 1.3. even in 1.3 i hardly had to cast anything and even with those casts i do not remember getting any class cast exceptions. i do think imodelt makes a ton of sense, but the types on components are pretty bad. in 1.5 i have

Re: Changing model of TextField with DDC

2008-10-28 Thread Ryan
Yea, I've started to come to that conclusion. Thanks Igor! Ryan On Tue, Oct 28, 2008 at 09:14:42AM -0700, Igor Vaynberg exclaimed: this really looks like a hack :) you should keep the field and text in two different fields, and then in form.onsubmit do the right thing. -igor On Mon, Oct 27,

Re: [Wicketstuff jQuery] not compiling?

2008-10-28 Thread Martin Grigorov
I've changed it. Since r4284 wicketstuff-parent/pom.xml has this: properties java.src.version1.5/java.src.version wicket.version1.4-m3/wicket.version slf4j.version1.5.2/slf4j.version runtime.logtarget/velocity.log/runtime.log

Re: few (not only) AutoCompleteTextField questions

2008-10-28 Thread Igor Vaynberg
probably because textfields do not receive onchange event, or something else was hijacking it. -igor On Tue, Oct 28, 2008 at 6:17 AM, dlipski [EMAIL PROTECTED] wrote: dlipski wrote: Hi, First, problem description: Recently I was asked to change DropDownChoice field into

Re: no title in ExternalLink

2008-10-28 Thread Erik van Oosten
Hehe, that's a nice one too. James Carman wrote: Perhaps just a helper method somewhere? public AbstractLink addTitle(AbstractLink link, IModelString titleModel) { link.add(new AttributeModifier(title, true, titleModel)); return link; } -- Erik van Oosten

Re: wicket and 508 compilance

2008-10-28 Thread Igor Vaynberg
both 1899 and 982 are pretty friggin vague :) how often are link titles dynamic? i am thinking not very often at all, so why add another imodel slot to make the component event bigger for a small percantage of usecases. in most cases a wicket:id=external-link title=

Re: Write XML response

2008-10-28 Thread Igor Vaynberg
is it not just a matter of setting the right header? -igor On Tue, Oct 28, 2008 at 9:19 AM, [EMAIL PROTECTED] wrote: Hello, I wonder if you can help. I'm trying to send back some XML from an AbstractAjaxBehavior like this: public class MyAjaxBehavior extends AbstractAjaxBehavior {

Re: Write XML response

2008-10-28 Thread Ambrose . Wheatcroft
Hello, Yes, sorry and thanks - missed the StringRequestTarget(String contentType, String charSet, String content) constrcutor. Thanks again. JHC Ambrose Wheatcroft Analyst / Programmer Email: [EMAIL PROTECTED] London office • Cottons Centre, Cottons Lane, London SE1 2QG • Telephone: +44

Re: no title in ExternalLink

2008-10-28 Thread Michael Sparer
I always go for accessibility and each of my links do have a title and I'd be the last one to say that accessibility (and usability) isn't important. But I think the footprint of the components should be kept as small as possible. It isn't hard to extend them anyway. If you only use titled

using wicket

2008-10-28 Thread miro
I am new to wicket and no guru to help me answer questions , I am starting a new project , is it ok to work with wicket 1.4 , i mean is it a stable release ,of should I use wicket 1.3 ? Please help me , also please point me to java docs of wicket 1.4 if 1.4 is all teste3d and ready for use --

Re: DataTable cell link

2008-10-28 Thread Michael O'Cleirigh
Hi Daniel, If you subclass DefaultDataTable there is a protected method call newCellItem(...) that you can use to attach the onclick class onto the td. like: class MyDataTable extends DefaultDataTable { /* (non-Javadoc) * @see

spring wicket application template or example

2008-10-28 Thread miro
I am starting a new project with spring and wicket, are there any wicket spring examples which i can use to to get started -- View this message in context: http://www.nabble.com/spring--wicket--application--template-or-example-tp20211466p20211466.html Sent from the Wicket - User mailing

Serialization problem - detaching an oblect from session

2008-10-28 Thread eyalbenamram
Hi, My session is holding an non serializable object. this causes a problem every time wicket is trying to serialize a page (since most pages in my app are hoding a pointer to the session) Here is the exception: http-6789-6 ERROR lang.Objects - Error serializing object class screens.Login

Re: Serialization problem - detaching an oblect from session

2008-10-28 Thread Igor Vaynberg
according to the j2ee spec, afair, httpsession must not hold any non-serializable objects. -igor On Tue, Oct 28, 2008 at 10:02 AM, eyalbenamram [EMAIL PROTECTED] wrote: Hi, My session is holding an non serializable object. this causes a problem every time wicket is trying to serialize a page

Re: Serialization problem - detaching an oblect from session

2008-10-28 Thread eyalbenamram
Thank you for the quick response. eyalbenamram wrote: Hi, My session is holding an non serializable object. this causes a problem every time wicket is trying to serialize a page (since most pages in my app are hoding a pointer to the session) Here is the exception: http-6789-6 ERROR

Re: no title in ExternalLink

2008-10-28 Thread Steve Swinsburg
I have submitted small patches for both Link and ExternalLink to show users how to add in the title attribute themselves, in an attempt to improve the Javadocs for the HTML components and hence accessibility. More components will follow. I will close the ticket regarding the additional

inserting javascript from java to html file

2008-10-28 Thread eyalbenamram
Hi I am inserting javascript code like this: StringBuffer config = new StringBuffer(); config.append(script language=\JavaScript\\n); config.append(function onLoad() { getValue(); setTimeout(\onRefresh();\,+ns.getAutoRefreshSecs()*1000+); }\n);

Re: Serialization problem - detaching an oblect from session

2008-10-28 Thread eyalbenamram
The problem is, this object the session is holding cannot be serialized. Is there a way to hold this object on a defferent level or detach it from the session despite the J2ee specs? igor.vaynberg wrote: according to the j2ee spec, afair, httpsession must not hold any non-serializable

Re: inserting javascript from java to html file

2008-10-28 Thread Igor Vaynberg
use iheadercontributor, that should work much better also make sure your page has body tag. -igor On Tue, Oct 28, 2008 at 10:57 AM, eyalbenamram [EMAIL PROTECTED] wrote: Hi I am inserting javascript code like this: StringBuffer config = new StringBuffer();

Re: inserting javascript from java to html file

2008-10-28 Thread eyalbenamram
but StringHeaderContibutor implement IHeaderContributor... I also verfied body tag exists... Can you please give a code ample. it will be much easier.. Thanks. igor.vaynberg wrote: use iheadercontributor, that should work much better also make sure your page has body tag. -igor On

Re: inserting javascript from java to html file

2008-10-28 Thread eyalbenamram
Sorry, I understood what you meant and used IHeaderContributor. Thanks. igor.vaynberg wrote: use iheadercontributor, that should work much better also make sure your page has body tag. -igor On Tue, Oct 28, 2008 at 10:57 AM, eyalbenamram [EMAIL PROTECTED] wrote: Hi I am inserting

Re: Serialization problem - detaching an oblect from session

2008-10-28 Thread Igor Vaynberg
what is its scope? what is the object? -igor On Tue, Oct 28, 2008 at 11:09 AM, eyalbenamram [EMAIL PROTECTED] wrote: The problem is, this object the session is holding cannot be serialized. Is there a way to hold this object on a defferent level or detach it from the session despite the

Re: inserting javascript from java to html file

2008-10-28 Thread eyalbenamram
Hi again, I used IHeaderContributer, and the javascript code is now garbled and not working. Here is what I got: script type=text/javascript src=resources/org.apache.wicket.markup.html.WicketEventReference/wicket-event.js/script script type=text/javascript !--/*--![CDATA[/*!--*/

Re: inserting javascript from java to html file

2008-10-28 Thread Igor Vaynberg
what is your code look like? -igor On Tue, Oct 28, 2008 at 11:28 AM, eyalbenamram [EMAIL PROTECTED] wrote: Hi again, I used IHeaderContributer, and the javascript code is now garbled and not working. Here is what I got: script type=text/javascript

Re: Serialization problem - detaching an oblect from session

2008-10-28 Thread eyalbenamram
the object negotiates between the user and a server that provides a messaging service. there is a new object for each user - thus it must sit in the session. The object contains non serializable objects such as sockets and httpRequests... igor.vaynberg wrote: what is its scope? what is the

Re: inserting javascript from java to html file

2008-10-28 Thread eyalbenamram
public void renderHead(IHeaderResponse response) { StringBuffer config = new StringBuffer(); config.append(script language=\JavaScript\\n); config.append(function removeBlur(checked) {\n); config.append(if(checked) {\n);

Re: inserting javascript from java to html file

2008-10-28 Thread eyalbenamram
OK. What if I want all the JS to be inline (no .js file to be made)? I saw that wicket created a .js file... igor.vaynberg wrote: response.renderOnLoadJavascript() takes just the javascript - like the javadoc says. no need for you to output the script tags. -igor On Tue, Oct 28, 2008

Re: inserting javascript from java to html file

2008-10-28 Thread Igor Vaynberg
huh? it did not create the fileyour javascript will be inlined! you are using the onloadjavascript which needs support for the onload event, which is why the wicket-event.js is included before your javascript. all this is apparent just by looking at the output code, you can see your code

Re: DataTable cell link

2008-10-28 Thread dlipski
All this solutions are correct but the problem is not in attaching some custom Javascript to td element (which can be done in multiple ways) but in making td element work as a link. What exactly should I do to achive this ? What components should I add at server side at what JavaScript should I

Re: Serialization problem - detaching an oblect from session

2008-10-28 Thread Igor Vaynberg
you can keep those in your application object, or servlet-context if you think in j2ee terms. so application.mapsessionid,object and when the session is destroyed you remove it from the map. -igor On Tue, Oct 28, 2008 at 11:32 AM, eyalbenamram [EMAIL PROTECTED] wrote: the object negotiates

Re: few (not only) AutoCompleteTextField questions

2008-10-28 Thread dlipski
Textfields do recive onchange event, even AutocompleteTextField has modified version off onchange event handler. Whats more new AjaxFormComponentUpdatingBehavior(onchange){..}; works well in this scenario but OnChangeAjaxBehavior not. I looked at OnChangeAjaxBehavior implemenation and this is a

Notified when component.remove() called

2008-10-28 Thread metalotus
Hi, I want to know when some components are removed. I need to do a bit of clean-up, such as remove their reference from a List. Is there such thing as a removal listener, or a hierarchy change listener I can use? Thakns, James -- View this message in context:

Re: DataTable cell link

2008-10-28 Thread James Carman
On Tue, Oct 28, 2008 at 3:05 PM, dlipski [EMAIL PROTECTED] wrote: All this solutions are correct but the problem is not in attaching some custom Javascript to td element (which can be done in multiple ways) but in making td element work as a link. Right, the td element is already consumed by

LoadableDetachableModel for drop-down menu selection

2008-10-28 Thread Gianni Doe
I'm starting out with Wicket and following the Wicket In Action examples through and I'm a bit stuck on how to make use of a LoadableDetachableModel in a drop-down menu situation. I've got a drop-down menu of countries which is populated from a LoadableDetachableModel, this works perfectly

Re: DataTable cell link

2008-10-28 Thread dlipski
Exaclty, problem is with 'consuming' td element by Item object. The problem is that if you have wide column but short text in it some users have problem with hitting the text (which is a link) .The idea is to make whole td element 'clickable'(or linkable). The solution would be if table could

Re: DataTable cell link

2008-10-28 Thread Jeremy Thomerson
Depending on what you are linking TO, it can be very simple. You can call urlFor(YourBookmarkablePage.class, pageParamsOrNullIfNone). So, you could do: cellItem.add(new SimpleAttributeModifier(onclick, location.href = ' + urlFor(YourBookmarkablePage.class, pageParamsOrNullIfNone) + ')); Of

AbstractDefaultAjaxBehavior in a panel not working when loaded from an ajax context

2008-10-28 Thread adrienleroy
Hello, I am trying to implements this JavaScript timedatepicker http://labs.perifer.se/timedatepicker/ as an AbstractDefaultAjaxBehavior here my class public class TimePickBehavior extends AbstractDefaultAjaxBehavior { private static final CompressedResourceReference TIMEPICKER_JS = new

Re: DataTable cell link

2008-10-28 Thread Jeremy Thomerson
If that's your problem, I'd suggest using CSS, something like: TD A { display: block; } This is much better because the anchor will fill the box (fixing your problem), and you are more compatible (if JS is off, etc). -- Jeremy Thomerson http://www.wickettraining.com On Tue, Oct 28, 2008 at

Re: [Wicketstuff jQuery] not compiling?

2008-10-28 Thread Nino Saturnino Martinez Vazquez Wael
As I mentioned I saw it in the parent pom.. Here: https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-jquery/pom.xml Unless! I have an old outdated version of the pom.. That could be.. Nope, seems to be an old version on our maven repo:

Re: spring wicket application template or example

2008-10-28 Thread Nino Saturnino Martinez Vazquez Wael
Lots Wicket Iolite, WicketTopia these are maven archetypes, and wicketTopia much more... miro wrote: I am starting a new project with spring and wicket, are there any wicket spring examples which i can use to to get started -- -Wicket for love Nino Martinez Wael Java Specialist @

Re: LoadableDetachableModel for drop-down menu selection

2008-10-28 Thread Igor Vaynberg
this should give you an idea http://wicketinaction.com/2008/09/building-a-smart-entitymodel/ -igor On Tue, Oct 28, 2008 at 12:27 PM, Gianni Doe [EMAIL PROTECTED] wrote: I'm starting out with Wicket and following the Wicket In Action examples through and I'm a bit stuck on how to make use of a

Re: wicket and 508 compilance

2008-10-28 Thread Johan Compagner
i also dont want to have another constructor with that title parameter But if there are a certain amount of components that could use something for accessibility then i am more for just a method setTitle(IModel model) or something like that johan On Tue, Oct 28, 2008 at 5:15 PM, Steve

Meetings in the Netherlands (or neighbouring countries)

2008-10-28 Thread Harro Lissenberg
A colleague and I are getting more and more interested in Wicket and where wondering if any meetings/presentations/lectures in or around the Netherlands are being planned. The community meetups page is rather out-of-date: http://cwiki.apache.org/WICKET/community-meetups.html So, anybody out

Re: Meetings in the Netherlands (or neighbouring countries)

2008-10-28 Thread Rob Sonke
Not really a meeting but at november the 12th there's the NLJug's JFall again with at least one wicket session. I'll be there anyway. Rob Harro Lissenberg wrote: A colleague and I are getting more and more interested in Wicket and where wondering if any meetings/presentations/lectures in or

Re: Meetings in the Netherlands (or neighbouring countries)

2008-10-28 Thread Johan Compagner
me to On Tue, Oct 28, 2008 at 9:33 PM, Rob Sonke [EMAIL PROTECTED] wrote: Not really a meeting but at november the 12th there's the NLJug's JFall again with at least one wicket session. I'll be there anyway. Rob Harro Lissenberg wrote: A colleague and I are getting more and more

[Job Posting] Wicket Web Developer in Northern California

2008-10-28 Thread Michael
Hello, My company is looking for a web developer that has both Wicket and portal(Jetspeed, Liferay) experience. Our company has recently adopted Wicket as our standard Java Web Framework. You can find the job posting on Dice:

Feedback Panel on Modal Window With Field Validation does not work

2008-10-28 Thread sureshram
Hello, I am trying to add auto validation in the modal window but I don't see any error messages. I added a feedback panel on a modal window which has a required text field. When I try to submit, the modal window does not do any thing and I think what happens here is wicket does validation

Re: Forcing property models to update

2008-10-28 Thread walnutmon
I did as you said, and have the unit tests, and read the wiki on chaining models... something still isn't clicking though. BTW, I have Wicket in action and it is fantastic, perhaps there is still something elduing me though... I still can't wrap my head around why that property model doesn't

Re: wicket and 508 compilance

2008-10-28 Thread Pointbreak
I don't understand why you keep insisting that a title attribute should always be included in an anchor. In most cases the text within the anchor tag is enough information for what the purpose of the link is, certainly if you think a minute about that text. In such cases a title attribute will

Re: GMap2 - GInfoWindow

2008-10-28 Thread Martin Funk
Jeremy Thomerson wrote: I'm not sure who maintains GMap2 (Martin F?) I guess one could say that :-) - but I just created a class that allows me to show an info window when a GMarker is clicked. This could actually be abstracted to allow other calls on a GMarker fairly easily. Two questions:

Re: [Wicketstuff jQuery] not compiling?

2008-10-28 Thread Martin Grigorov
I've updated and build locally all projects that extends wicketstuff-parent when I changed the dependency and everything was fine. But ... the 1.3.x projects (https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/branches/wicket-1.3.x) still depends on wicketstuff-parent:2-nojavadoc...

Wicket and URLs

2008-10-28 Thread S D
Hi, I was browsing through examples, it looks very impressive but there's a thing that bothers me somewhat. The Basic Label example uses the following URL:

Re: [Wicketstuff jQuery] not compiling?

2008-10-28 Thread Martin Grigorov
Ok, I just updated wicketstuff-patent and all projects that extend it ( wicketstuff-annotation/pom.xml wicketstuff-jquery/pom.xml wicketstuff-jquery-examples/pom.xml wicketstuff-misc/pom.xml wicketstuff-objectautocomplete/pom.xml ) to ver. 1.4-SNAPSHOT The only project in trunk that still

Re: spring wicket application template or example

2008-10-28 Thread shetc
See Wicket In Action, Chapter 13. -- View this message in context: http://www.nabble.com/spring--wicket--application--template-or-example-tp20211466p20218516.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Wicket and URLs

2008-10-28 Thread Scott Swank
One option is to define urls in your application: mountBookmarkablePage(/Tour, TourBrowsePage.class); On Tue, Oct 28, 2008 at 4:03 PM, S D [EMAIL PROTECTED] wrote: Hi, I was browsing through examples, it looks very impressive but there's a thing that bothers me somewhat. The Basic Label

Re: Wicket and URLs

2008-10-28 Thread S D
But what if the URL is dynamic like, for example, is this google URL that points to the second page of results: http://www.google.com/search?hl=enq=wicketstart=10sa=N Thanks --- On Tue, 10/28/08, Scott Swank [EMAIL PROTECTED] wrote: One option is to define urls in your application:

Re: Wicket and URLs

2008-10-28 Thread Scott Swank
Those will be available to you in the YourPage(PageParameters parameters) constructor. On Tue, Oct 28, 2008 at 5:08 PM, S D [EMAIL PROTECTED] wrote: But what if the URL is dynamic like, for example, is this google URL that points to the second page of results:

Re: Wicket and URLs

2008-10-28 Thread S D
--- On Wed, 10/29/08, Scott Swank [EMAIL PROTECTED] wrote: Those will be available to you in the YourPage(PageParameters parameters) constructor. So, if I understand you correctly, I'd have to call mountBookmarkablePage() for all wicket URLs used in the application. Sounds somewhat tedious

Re: Wicket and URLs

2008-10-28 Thread Jeremy Thomerson
You can also mount all pages in a package with one single call. You will find this in old emails on the list, blogs, etc.. Google search for wicket mount package: http://www.google.com/search?hl=enrls=com.microsoft%3A*q=wicket+bookmarkable+urls The third result:

Re: Wicket and URLs

2008-10-28 Thread Igor Vaynberg
all of these are for entry urls. urls that link to page instances or after a form submit will still be ?wicket:interface=:4:foo.bar:ILinkListener if you are that concerned with urls wicket might not be for you. you give up control over urls for the convinience of not having to deal with them.

Re: Wicket and URLs

2008-10-28 Thread Pablo Abad
Yet another option is to alter the way the URL is coded, though an IRequestCodingStrategy implementation. Here are some real examples of how coded urls look:

Re: Feedback Panel on Modal Window With Field Validation does not work

2008-10-28 Thread 张伟
try page not panel 2008/10/29 sureshram [EMAIL PROTECTED] Hello, I am trying to add auto validation in the modal window but I don't see any error messages. I added a feedback panel on a modal window which has a required text field. When I try to submit, the modal window does not do any

Re: problem with PropertyModel and setDefaultFormProcessing(false) for button

2008-10-28 Thread Pablo Abad
Seems a typo either in the code you pasted or in your actual code, but shouldn't the first line be something like name = item.getName(); ? (gameItem -- item) On Tue, Oct 28, 2008 at 11:41 AM, itayh [EMAIL PROTECTED] wrote: protected void onEditItem(Item item) { name =

  1   2   >