PasswordTextField not showing the value

2010-01-27 Thread Josh Kamau
I have would like to edit an existing user's properties including the password. However, all the other properties are appearing on their corresponding fields except the password field. How do i make it appear?. here is my component for editing users public class UserPanel extends Panel {

Re: PasswordTextField not showing the value

2010-01-27 Thread Josh Kamau
PM, Jonas barney...@gmail.com wrote: Not sure if that is actually the problem, but have you noticed PasswordTextField#getResetPassword() ? Its default value is 'true', meaning the value is cleared on every rendering. cheers, Jonas On Wed, Jan 27, 2010 at 3:19 PM, Josh Kamau joshnet2

Re: AjaxSubmitLink + setResponsePage = feedback message problem on new page

2010-01-27 Thread Josh Kamau
Just wondering; Isnt ajax supposed to update components on the same page? If you want to redirect to another page then you dont need an ajax link. Try with a normal link. Then try without setting response page but add the feedback panel on the same page. On Wed, Jan 27, 2010 at 9:15 PM, Wayne

Dynamically Generated Wicket UI

2010-01-27 Thread Josh Kamau
Hello guys; I have this enormous task of creating a web based UI for our ERP (the opensource Adempiere ERP). The UI is normally generated from the data store in the Database. It includes Windows, Tabs , grids, trees etc. I know windows , tabs and tree are not hard to generate. The problem i

Re: Dynamically Generated Wicket UI

2010-01-27 Thread Josh Kamau
, Jan 28, 2010 at 7:57 AM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Cannot see attachments.. link? ** Martin 2010/1/28 Josh Kamau joshnet2...@gmail.com: Hello guys; I have this enormous task of creating a web based UI for our ERP (the opensource Adempiere ERP). The UI

Re: Dynamically Generated Wicket UI

2010-01-27 Thread Josh Kamau
Eelco; How do i layout components dynamically in panel? i.e, there is not markup like a table to determine the position? if i write myPanel.add(field1) and myPanel.add(field2) and i want the fields to be laid out a) side by side b) one below the other, how do i do it ? regards and thanks.

Re: Dynamically Generated Wicket UI

2010-01-27 Thread Josh Kamau
Ernesto two dimensional repeaters? Let me check that out. never thought of it. sounds like a good idea. Josh On Thu, Jan 28, 2010 at 8:56 AM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Hi Josh, How do i layout components dynamically in panel? i.e, there is not markup like a

Re: Dynamically Generated Wicket UI

2010-01-27 Thread Josh Kamau
Adrian; Thanks. I will check it out Josh On Thu, Jan 28, 2010 at 9:24 AM, Adrian Wiesmann awiesm...@somap.orgwrote: Hi there On 1/28/10 6:18 AM, Josh Kamau wrote: How do i layout components dynamically in panel? i.e, there is not markup like a table to determine the position? if i

Re: Dynamically Generated Wicket UI

2010-01-27 Thread Josh Kamau
everything out of an Entity. There is also http://wicketwebbeans.sourceforge.net/ http://wicketwebbeans.sourceforge.net/and somewhere on wicket-stuff a similar project. Best, Ernesto On Thu, Jan 28, 2010 at 7:03 AM, Josh Kamau joshnet2...@gmail.com wrote: Ernesto two dimensional

Repeating View Horizontally

2010-01-28 Thread Josh Kamau
Hi; How do you make repeating view to repeat the items horizontally? The number of items is not known at the time of creating the markup. Am a bit new to wicket Regards Josh

Re: Repeating View Horizontally

2010-01-28 Thread Josh Kamau
Thanks. I managed with a span for horizontal flow and div for vertical flow. With a nested Repeating view, i am able to generate any my interfaces dynamically. Regards. On Thu, Jan 28, 2010 at 7:06 PM, Riyad Kalla rka...@gmail.com wrote: Josh, Just what Tor said -- repeaters will just

Confirmation dialog

2010-01-28 Thread Josh Kamau
Hi Team lnkDelete.add(new SimpleAttributeModifier(onClick,return confirm('Are you sure you want to Delete?') )); The above code produces a confirmation message if its a Link and doesnt work if its an AjaxFallbackLink. How do i make it work on ajax link regards. Josh

Re: Opening Wicketpages from external link?

2010-01-28 Thread Josh Kamau
I suggest you start with something very simple that works. You can use maven archetype to generate a project then mount the page there. If it works. Try adding adding your spring and hibernate stuff . If it works see where you went wrong in your main application Josh On Fri, Jan 29, 2010 at 6:57

Date Format on text field

2010-01-29 Thread Josh Kamau
Hi ; I have a text field that has a model of type java.util.Date. How do i set the format of how the components displays the date? Regards.

Fwd: Date Format on text field

2010-01-29 Thread Josh Kamau
-- From: Josh Kamau joshnet2...@gmail.com Date: Fri, Jan 29, 2010 at 11:13 AM Subject: Date Format on text field To: users@wicket.apache.org Hi ; I have a text field that has a model of type java.util.Date. How do i set the format of how the components displays the date? Regards.

Re: Apache Click

2010-01-29 Thread Josh Kamau
I looked at click. Its not just HTML and just java like wicket. Lack of documentation and books and less widgets. On Fri, Jan 29, 2010 at 7:04 PM, Giovanni pino_o...@yahoo.com wrote: Apache Click is very similar to Wicket: http://incubator.apache.org/click/ What are the main differences

RIA solution based on wicket

2010-01-31 Thread Josh Kamau
Hi guys; I would like to get your opinions and also share some of my views. I have been test-driving wicket for a couple of weeks now and i found it quite impressive. However , i would like to say that IMHO wicket is more suitable for creating websites as opposed to RIA applications. I would like

Re: RIA solution based on wicket

2010-02-01 Thread Josh Kamau
Hi Ernesto This is RIA enough. I wish i could do such with Wicket. http://www.extjs.com/examples/#roweditorgrid regards On Mon, Feb 1, 2010 at 2:35 PM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Hi, impressive. However , i would like to say that IMHO wicket is more suitable for

Re: RIA solution based on wicket

2010-02-01 Thread Josh Kamau
The grid looks wonderful. On Mon, Feb 1, 2010 at 5:29 PM, Martin Grigorov mcgreg...@e-card.bg wrote: you could http://wicketstuff.org/grid-examples/data-grid/editable On Mon, 2010-02-01 at 15:16 +0300, Josh Kamau wrote: Hi Ernesto This is RIA enough. I wish i could do such with Wicket

Application-wide date formate

2010-02-05 Thread Josh Kamau
Hi guys; Kindly help me set the application-wide date format independent of the locale. regards.

Re: Application-wide date formate

2010-02-05 Thread Josh Kamau
, i want to to insert the date in the above format. I have tried writting a converter, overriding the get/setModelObject on the textfield among other things but it wont work. Anyone suggest a different date picker component that i can use? regards. Josh On Fri, Feb 5, 2010 at 11:25 AM, Josh Kamau

Re: Application-wide date formate

2010-02-05 Thread Josh Kamau
I did this and it worked. txtStartDate = new DateTextField(txtStartDate, new ModelDate(startDate.toDate()),dd-MMM-); josh. On Fri, Feb 5, 2010 at 12:22 PM, Peter Thomas ptrtho...@gmail.com wrote: On Fri, Feb 5, 2010 at 2:42 PM, Josh Kamau joshnet2...@gmail.com wrote: Hi guys; I am

Accessing web-inf folder

2010-02-05 Thread Josh Kamau
Hi guy; Kindly help me. i would like to access the WEB-INF directory so that i can store some images there. Regards. Josh

Re: Accessing web-inf folder

2010-02-05 Thread Josh Kamau
I figured it out on the application init() method i added public String getFolder(){ return this.getServletContext().getResource(/WEB-INF/images).getPath(); } On Sat, Feb 6, 2010 at 9:14 AM, Josh Kamau joshnet2...@gmail.com wrote: Hi guy; Kindly help me. i would like

Wicket Layout

2010-02-07 Thread Josh Kamau
Hi guys; I think wicket is the best java web framework out there. However , i really would like be to able to create a layout like this : http://demos.dojotoolkit.org/demos/mail/ Does the current dojo integration support this. Is it possible to create such a layout with vanilla wicket?

Re: Wicket Layout

2010-02-07 Thread Josh Kamau
for the folder viewer the datatable from wicket-extensions for the lsit of messages there are modal windows, all available so yes, wicket should be able to support this. not sure about the dojo integration On Feb 7, 2010, at 9:42 PM, Josh Kamau wrote: Hi guys; I think wicket is the best

Wicket RAD project

2010-02-08 Thread Josh Kamau
Hi team; Just wondering, is Wicket RAD project still alive ? http://sites.google.com/site/wicketrad/ Best regards.

Re: Wicket Layout

2010-02-08 Thread Josh Kamau
] of layout manager into your application. Best, Ernesto References. [1]-http://layout.jquery-dev.net/documentation.cfm#Example On Mon, Feb 8, 2010 at 6:42 AM, Josh Kamau joshnet2...@gmail.com wrote: Hi guys; I think wicket is the best java web framework out there. However , i

Re: Wicket Layout

2010-02-08 Thread Josh Kamau
components with Wikcet... I think it would be very easy to integrate this example [1] of layout manager into your application. Best, Ernesto References. [1]-http://layout.jquery-dev.net/documentation.cfm#Example On Mon, Feb 8, 2010 at 6:42 AM, Josh Kamau joshnet2...@gmail.com

Re: Wicket Layout

2010-02-08 Thread Josh Kamau
, Josh Kamau joshnet2...@gmail.com wrote: Ernesto Great!!. i really appreciate. I wish i could be able to bundle the layout into a library. Regards. On Mon, Feb 8, 2010 at 3:34 PM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Hi Josh, I just played a bit with [1

Re: Layout manager

2010-02-10 Thread Josh Kamau
Hello, Is there any Wicket project for making a layout manager similar to iGoogle or http://www.netvibes.com/#General We found a project with ExtJS that is not supported anymore . Is there a Wicket project for that? or for any other similar? Can Wiquery help with this? Thanks for helping out, I

Re: Layout manager

2010-02-10 Thread Josh Kamau
, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Check out [1] and look for LayoutPlugin.java and Layou.java. Ernesto [1]- http://wiquery.googlecode.com/svn/examples/wiquery-presentation-examples On Wed, Feb 10, 2010 at 10:05 AM, Josh Kamau joshnet2...@gmail.com wrote: Hello

Frames for layout

2010-02-10 Thread Josh Kamau
Hi Team; Just wondering, can i use Frames for application layout? The kind of application am talking about will run within a LAN and therefore bookmarkability and Search engine friendliness are not major issues. regards.

Re: Frames for layout

2010-02-10 Thread Josh Kamau
. On Wed, Feb 10, 2010 at 3:44 PM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Why not use the jquery based solution provided in another thread? Ernesto On Wed, Feb 10, 2010 at 10:53 AM, Josh Kamau joshnet2...@gmail.com wrote: Hi Team; Just wondering, can i use Frames

wicket Google maps integration

2010-02-15 Thread Josh Kamau
Hi guys; Is the wicket-contrib-gmap project still active? I need to intergrate google maps and i was wondering if i can use it. Regards Joshua

Re: wicket Google maps integration

2010-02-15 Thread Josh Kamau
Thanks alot Erik. Is the library in maven repository? regards On Mon, Feb 15, 2010 at 5:03 PM, Erik van Oosten e.vanoos...@grons.nlwrote: Hi Joshue, I believe wicket-contrib-gmap is not active anymore. You are probably better off with wicket-gmap2 project. Regards, Erik. Josh Kamau

Re: wicket Google maps integration

2010-02-15 Thread Josh Kamau
/dependency I'm using it for a couple of projects and it's working just fine. Regards, Gabriel. Josh Kamau wrote: Thanks alot Erik. Is the library in maven repository? regards On Mon, Feb 15, 2010 at 5:03 PM, Erik van Oosten e.vanoos...@grons.nlwrote: Hi

Re: wicket Google maps integration

2010-02-16 Thread Josh Kamau
/ClickListener.java?r=#l65 An Overlay was clicked, so glatLng is null. mf 2010/2/16 Josh Kamau joshnet2...@gmail.com Team;; Whats wrong with this code? The map is being displayed properly and when i click on it, a new marker is added and the infoWindow is shown. when i click on the info

Re: [OT] Wicket changed my life !

2010-02-18 Thread Josh Kamau
Me too!! On Fri, Feb 19, 2010 at 9:57 AM, Ashika Umanga Umagiliya auma...@biggjapan.com wrote: I love Wicket ! - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

Offline capable web application

2010-02-19 Thread Josh Kamau
Hi guys; I am working on an application that i want to enable to work offline. I want to use wicket for this. Any ideas. I would like uses to fill and submit forms even when working offline and then the data is synchronised later. Is it possible? all manner of suggestions/links are welcome.

Re: Offline capable web application

2010-02-19 Thread Josh Kamau
Any way of integrating Google Gears or apache derby DB ? On Fri, Feb 19, 2010 at 4:04 PM, Josh Kamau joshnet2...@gmail.com wrote: Hi guys; I am working on an application that i want to enable to work offline. I want to use wicket for this. Any ideas. I would like uses to fill and submit

Re: [OT] Wicket App Hosting

2010-02-25 Thread Josh Kamau
When i wanted to do the same, i bought a server space at www.theserverexperts.com and installed my staff there . ie. Jetty, postgres and the like. I then bought a domain and liked it with my public ip address. Regards. On Thu, Feb 25, 2010 at 3:50 AM, Mauro Ciancio maurocian...@gmail.comwrote:

UI Layout

2010-02-26 Thread Josh Kamau
Wicket offers high level of flexibility when it comes to page layout. So i ask, what are the best practices? is it ok if i use panels only and one main layout page? Kind regards Josh.

Wicket-securty

2010-03-01 Thread Josh Kamau
Hi Team; I am just wondering, are the wicket security features enough or i have to integrate something like apache-shiro ? How are you guys implementing security? Regards Josh.

Re: Wicket-securty

2010-03-01 Thread Josh Kamau
, 2010 at 09:14, Josh Kamau joshnet2...@gmail.com wrote: Hi Team; I am just wondering, are the wicket security features enough or i have to integrate something like apache-shiro ? How are you guys implementing security? Regards Josh

Mail:to link

2010-03-01 Thread Josh Kamau
Hi guys; How do i generate a Mail:to link dynamically (e.g for the email addresses of users stored in the database) Kind regards and thanks for you support. Josh

Re: Mail:to link

2010-03-01 Thread Josh Kamau
I got it here : http://old.nabble.com/Generating-email-link-td22738181.html. thanks. On Tue, Mar 2, 2010 at 9:42 AM, Josh Kamau joshnet2...@gmail.com wrote: Hi guys; How do i generate a Mail:to link dynamically (e.g for the email addresses of users stored in the database) Kind regards

Re: How to dynamically create wicket label and TextField Component?

2010-03-09 Thread Josh Kamau
You can create a custom component that is a combination of a label and a textfield. They use it as if it were one component. regards. On Tue, Mar 9, 2010 at 11:52 AM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Sorry can you describe a bit more what you want to achieve? Ernesto On

Handling jquery events

2010-03-31 Thread Josh Kamau
Hi Team; I know i can write java code that handles javascript events e.g onChange() using Behaviours. Question: Is there way i can handle in the same way jquery events? or custom javascript events? Kind regards Josh

Re: Handling jquery events

2010-03-31 Thread Josh Kamau
-Ursprüngliche Nachricht- Von: Josh Kamau [mailto:joshnet2...@gmail.com] Gesendet: Mittwoch, 31. März 2010 11:06 An: users@wicket.apache.org Betreff: Handling jquery events Hi Team; I know i can write java code that handles javascript events e.g onChange() using Behaviours. Question

Re: Handling jquery events

2010-03-31 Thread Josh Kamau
- Von: Josh Kamau [mailto:joshnet2...@gmail.com] Gesendet: Mittwoch, 31. März 2010 11:26 An: users@wicket.apache.org Betreff: Re: Handling jquery events Thanks Stefan. i will. On Wed, Mar 31, 2010 at 12:22 PM, Stefan Lindner lind...@visionet.de wrote: Hi Josh, take a look at jWicket

Displaying HTML

2010-04-06 Thread Josh Kamau
Hi guys; I am using TinyMCE to created styled text and save it in the database. I want to display the same on for example a label, is there any component that displays the text as HTML , i mean i dont want to see the tags, i want to see some formatted text. Kind regards. Josh

Re: Displaying HTML

2010-04-06 Thread Josh Kamau
Thanks. It worked. Regards. On Tue, Apr 6, 2010 at 11:43 AM, Wilhelmsen Tor Iver toriv...@arrive.nowrote: I want to display the same on for example a label, is there any component that displays the text as HTML , i mean i dont want to see the tags, i want to see some formatted

Wicket And GAE

2010-04-08 Thread Josh Kamau
What are the main issues with wicket and Google app engine

uploadprogressbar

2010-04-13 Thread Josh Kamau
Hi, I'm trying to use an upload progressbar, the problem is that it does not appear whent I use an ajaxsubmit button but appears when i used the form onSubmit method. what could be the problem. Regards,

Re: Wicket And GAE

2010-04-13 Thread Josh Kamau
to the amount of data store in the session. If anyone has solutions or further experience with these issues - I'm all ears! :) cheers, Rich On 8 April 2010 17:00, Josh Kamau joshnet2...@gmail.com wrote: What are the main issues with wicket and Google app engine -- Richard Nichols

Re: uploadprogressbar

2010-04-13 Thread Josh Kamau
It says cannot update component whose setRenderBodyOnly is set to true. On Tue, Apr 13, 2010 at 2:38 PM, Wilhelmsen Tor Iver toriv...@arrive.nowrote: Hi, I'm trying to use an upload progressbar, the problem is that it does not appear whent I use an ajaxsubmit button but appears when i

Re: Job opportunities (Netherlands)?

2010-04-13 Thread Josh Kamau
May be we need a forum for wicket jobs... On Tue, Apr 13, 2010 at 3:25 PM, Reinout van Schouwen rein...@gmail.comwrote: Hi everyone, In a few months' time my current contract will end. I am looking for a job where I can use my current Wicket skills and perhaps learn some more. :)

DropDownList

2010-04-14 Thread Josh Kamau
Hi team; Please tell me , how do i change the Choose One text on the drop down list to something else? regards; Josh

Re: DropDownList

2010-04-14 Thread Josh Kamau
Thanks robert, major.. It worked. regards Josh 2010/4/14 Major Péter majorpe...@sch.bme.hu http://lmgtfy.com/?q=wicket+change+choose+one+text 2010-04-14 14:00 keltezéssel, Josh Kamau írta: Hi team; Please tell me , how do i change the Choose One text on the drop down list

DropDownList

2010-04-19 Thread Josh Kamau
Hello guys, I am using a dropdownlist that am using to display a list of objects. however i want to replace the Choose one text with the first element in the list. how do i do this. Kind regards Josh

Re: DropDownList

2010-04-19 Thread Josh Kamau
Thanks alot Martin and MattyDE, Martin's solution is exactly what i wanted. Regards. On Mon, Apr 19, 2010 at 3:42 PM, MattyDE ufer.mar...@gmail.com wrote: just override protected CharSequence getDefaultChoice(Object selected) { and return this.getChoices.get(0).toString ... but be sure

Re: DropDownList

2010-04-19 Thread Josh Kamau
the DropDownChoice to use a model, you're saying when you want to know/update what's selected, go here. The funny thing about models is that they really are quite simple; it's just a mindset change. Good luck! James On Mon, Apr 19, 2010 at 8:52 AM, Josh Kamau joshnet2...@gmail.com wrote: Thanks alot

Shadow text on input fields

2010-04-26 Thread Josh Kamau
Hi guys; I would like to put some shadow text on the form input fields that disappears when one starts editing the field. The kind that appears on facebook fields. How do i do it. Most likely its not a wicket issue but i really need assistance in this. Am not very good in javascript. Kind

Re: Shadow text on input fields

2010-04-26 Thread Josh Kamau
Thanks Marjtin On Mon, Apr 26, 2010 at 11:27 AM, Martijn Dashorst martijn.dasho...@gmail.com wrote: If you can get away with it, you can use HTML5's placeholder text: http://diveintohtml5.org/forms.html Martijn On Mon, Apr 26, 2010 at 9:19 AM, Josh Kamau joshnet2...@gmail.com wrote: Hi

Re: Shadow text on input fields

2010-04-26 Thread Josh Kamau
I wish we could have something like myTextField.setDefaultText(Type text here); On Mon, Apr 26, 2010 at 11:55 AM, Josh Kamau joshnet2...@gmail.com wrote: Thanks Marjtin On Mon, Apr 26, 2010 at 11:27 AM, Martijn Dashorst martijn.dasho...@gmail.com wrote: If you can get away with it, you

Re: Shadow text on input fields

2010-04-26 Thread Josh Kamau
, Wilhelmsen Tor Iver toriv...@arrive.nowrote: The problem is not the Wicket side of things, but the browser side. Should Wicket test for HTML 5 support, and fall back to a Javascript hack? - Tor Iver -Opprinnelig melding- Fra: Josh Kamau [mailto:joshnet2...@gmail.com] Sendt: 26. april 2010

DropDownChoice problem

2010-04-28 Thread Josh Kamau
Hi team I need your help I am using a DropDownChoiceT in a form as follows: DropDownChoiceNationality lstNationality = new DropDownChoiceNationality(nationality,getNationalities()); The form has a CompoundPropertyModel After adding the dropdown to the form, i am able to save the record

Re: DropDownChoice problem

2010-04-29 Thread Josh Kamau
that be the case? Ernesto On Wed, Apr 28, 2010 at 4:20 PM, Josh Kamau joshnet2...@gmail.com wrote: Hi team I need your help I am using a DropDownChoiceT in a form as follows: DropDownChoiceNationality lstNationality = new DropDownChoiceNationality(nationality,getNationalities

Custom Javascript Events

2010-05-05 Thread Josh Kamau
Hi all Anyone with a sample code on how to handle custom javascript events with wicket on the server side? I would like to use jquery but handle events on the serverside. I had tried wiquery but lack of documentation is really frustrating me. I have great books on Jquery and JQuery UI and i

Re: Custom Javascript Events

2010-05-05 Thread Josh Kamau
specific? Which functionality are you missing and which events you want to handle on the server side? I've been using wiQuery for over three weeks now and I really find it intuitive and easy to use. Best, Ernesto On Wed, May 5, 2010 at 10:02 AM, Josh Kamau joshnet2...@gmail.com wrote: Hi all

Re: Custom Javascript Events

2010-05-05 Thread Josh Kamau
THanks Ernesto. I will revisit wiquery regards. Josh On Wed, May 5, 2010 at 12:34 PM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Hi Josh, Answers inline On WiQuery, how do i set component configuration parameters? How do modify the CSS? Many components have setters and

Re: Custom Javascript Events

2010-05-05 Thread Josh Kamau
WiQuery rocks!!!. i think am getting the rythm now. Thanks guys On Wed, May 5, 2010 at 1:03 PM, Josh Kamau joshnet2...@gmail.com wrote: THanks Ernesto. I will revisit wiquery regards. Josh On Wed, May 5, 2010 at 12:34 PM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Hi Josh

Re: jWicket 0.5.10

2010-05-17 Thread Josh Kamau
Hi stefan, where can i see a demo? regards Josh On Sun, May 16, 2010 at 12:53 PM, Stefan Lindner lind...@visionet.dewrote: jWicket 0.5.10 is now available at wicketstuff: https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/jwicket-parent Upgraded jQuery-ui

Jquery UI Layout

2010-05-21 Thread Josh Kamau
Hi WiQuery Team, Do you have any plans of including Jquery UI Layout in wiQuery? I urgently need it. regards. Josh.

Re: Jquery UI Layout

2010-05-21 Thread Josh Kamau
Still on WiQuery, I would also be glad if you let me know how to wrap up any JQuery plugin as a wiquery component. Regards. On Fri, May 21, 2010 at 9:07 AM, Josh Kamau joshnet2...@gmail.com wrote: Hi WiQuery Team, Do you have any plans of including Jquery UI Layout in wiQuery? I urgently

CSS contest

2010-06-07 Thread Josh Kamau
Hi guys; What became of the css contest? regards. Josh

Captcha regeneration

2010-06-09 Thread Josh Kamau
Hi team; I am trying to regenerate a captcha to help users incase the previous one was not very clear. I have tried several things including the code below captchaImg = new CaptchaImageResource(); captcha = new Image(captchaImg, captchaImg); captcha.setOutputMarkupId(true);

Re: Captcha regeneration

2010-06-09 Thread Josh Kamau
is that you have to remove it first from the component. Regards Kimotho. On Wed, Jun 9, 2010 at 11:14 AM, Josh Kamau joshnet2...@gmail.com wrote: Hi team; I am trying to regenerate a captcha to help users incase the previous one was not very clear. I have tried several things

Re: Captcha regeneration

2010-06-09 Thread Josh Kamau
I used NonCachingImage instead and it worked. On Wed, Jun 9, 2010 at 12:15 PM, Josh Kamau joshnet2...@gmail.com wrote: I think the old image is being cached by the browser. any idea how to stop this? regards. On Wed, Jun 9, 2010 at 11:45 AM, Robert Kimotho kimot...@gmail.comwrote: Here

Jwicket and Wiquery

2010-06-28 Thread Josh Kamau
Hi team; Whats the difference between jwicket and wiquery? I have already read wiquery tutorials and seen some examples, but i dont need to find any for jwicket. any help from jwicket team will do Kind regards. josh

Re: Jwicket and Wiquery

2010-06-28 Thread Josh Kamau
- Von: Josh Kamau [mailto:joshnet2...@gmail.com] Gesendet: Montag, 28. Juni 2010 16:05 An: users@wicket.apache.org Betreff: Jwicket and Wiquery Hi team; Whats the difference between jwicket and wiquery? I have already read wiquery tutorials and seen some examples, but i dont need to find

wicket mailing list

2010-07-14 Thread Josh Kamau
Just out of curiosity, how many members are in the wicket mailing list? regards Josh

Logging

2010-07-15 Thread Josh Kamau
Hi guys; I know wicket comes with pre configured logging . How do i get hold of the Logger object so that i can log messages in my pages and panels? regards. Josh.

Re: Logging

2010-07-15 Thread Josh Kamau
Thanks Martin. I wanted to make sure am doing the right thing.. Regards. On Thu, Jul 15, 2010 at 10:59 AM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: private static final Logger log = LoggerFactory.getLogger(WebPage.class); 2010/7/15 Josh Kamau joshnet2...@gmail.com

Changing CSS classes

2010-07-15 Thread Josh Kamau
Hi guys; I would like to change the CSS style of my feedback component depending on whether its error or info. How do do that? How do i modify the css class or id attribute of a component. Regards. Josh.

Re: Clean URLs without /?wicket:interface=:0:::: stuff - is it possible?

2010-07-22 Thread Josh Kamau
Laurentiu Trica,I would highly recommend that you get wicket in action book. Wicket has very many cool features. URL mapping is just one of them. To avoid making obvious mistakes, its a good idea to have a big picture of the entire framework. This will help you make informed design decisions

Internationalization on panels

2010-07-23 Thread Josh Kamau
Hi team Can i put internationalization properties files per panel or i have to do it per page. eg. i have MyPanel.html, MyPanel.java, can i have MyPanel.properties to have messages for the panel? regards. Josh

Re: Internationalization on panels

2010-07-23 Thread Josh Kamau
Thanks all. On Fri, Jul 23, 2010 at 10:16 AM, Anh 7za...@gmail.com wrote: Yes On Fri, Jul 23, 2010 at 12:12 AM, Josh Kamau joshnet2...@gmail.com wrote: Hi team Can i put internationalization properties files per panel or i have to do it per page. eg. i have MyPanel.html

Re: Forums tools ready-to-use?

2010-07-26 Thread Josh Kamau
Please check www.xaloon.org. This project contains some nice ready to use components for wicket including: - blog; - comments panel; - sports component; - plugin administration console; - registration and activation panel; Regards. Josh On Sun, Jul 25, 2010 at 7:30 PM, Paolo

Re: When object is null

2010-07-27 Thread Josh Kamau
Abid, Hi, I noted that you are adding the panel whether the data is null or not. I would suggest you do this; if (data!= null){ //construct and add the panel } On Tue, Jul 27, 2010 at 11:28 AM, Abid K abz...@gmail.com wrote: I hope someone can help a newbie who is learning Wicket. I

Re: When object is null

2010-07-27 Thread Josh Kamau
implementation of what to do with the data once it is passed to it. } else { //forget about the panel and only add the label that says there is no data add(new Label(No data to display)); } regards Josh On Tue, Jul 27, 2010 at 11:48 AM, Josh Kamau joshnet2...@gmail.com wrote: Abid, Hi, I

reusing clientside code for desktop and mobile screens.

2010-08-10 Thread Josh Kamau
Hello team; I am creating an application that will be accessible via desktop and via the mobile devices. I understand i can have the same java code and different html templates for mobile and desktop. My question is how to i do this. How do i make separate templates that will be used when the

Re: reusing clientside code for desktop and mobile screens.

2010-08-10 Thread Josh Kamau
and foopage_mobile.html. Jeremy Thomerson http://wickettraining.com -- sent from my smart phone, so please excuse spelling, formatting, or compiler errors On Aug 10, 2010 2:10 AM, Josh Kamau joshnet2...@gmail.com wrote: Hello team; I am creating an application that will be accessible via desktop

Re: reusing clientside code for desktop and mobile screens.

2010-08-11 Thread Josh Kamau
Thanks Jeremy. Just what i was looking for. On Tue, Aug 10, 2010 at 8:01 PM, Jeremy Thomerson jer...@wickettraining.com wrote: Session.setStyle(mobile) On Tue, Aug 10, 2010 at 8:55 AM, Josh Kamau joshnet2...@gmail.com wrote: Thanks Jeremy. Am just wondering, how will the application

overriding newRowItem() in AjaxFallbackDefaultDataTable

2010-08-13 Thread Josh Kamau
Hi Somebody please help me with a sample code on how to override the newRowItem method of the AjaxFallbackDefaultDataTable I would like to display some of the columns as links . is this the way to do it? regards. Josh

Re: overriding newRowItem() in AjaxFallbackDefaultDataTable

2010-08-13 Thread Josh Kamau
Thanks Jerome. What i want is to make the data in the cells clickable so that users can use them to drill down. For example, one column displays invoice numbers. I want the invoice number displayed to be a link so that a user can click it to open the invoice details page. I thought i would do so

Re: overriding newRowItem() in AjaxFallbackDefaultDataTable

2010-08-13 Thread Josh Kamau
) { DO SOMETHING } }); _devicesAFDDT = new AjaxFallbackDefaultDataTableObject[](devicesTable, columns, dataProvider, 20) -Original Message- From: Josh Kamau [mailto:joshnet2...@gmail.com] Sent: Friday, August 13, 2010 12:05 PM To: users

wicket drag n drop

2010-08-15 Thread Josh Kamau
Hi Which is the best drag and drop library for use with wicket? kind regards. Josh

Re: Best Practice passing data between Bookmarkable pages

2010-08-17 Thread Josh Kamau
HI Steve; When i want to maintain bookmarkable pages, i normally pass the record primary key in the PageParameters map . Once i have the primary key on the next page, i can use my dao to retrieve the object and may be float a div to display the record. On Tue, Aug 17, 2010 at 10:57 AM, Steve

  1   2   3   >