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

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 have

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 : > > Hello guys; > > > > I have this enormous task of creating a web based UI for our ERP (th

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

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

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 wrote: > 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 po

Re: Dynamically Generated Wicket UI

2010-01-27 Thread Josh Kamau
gt; >I > just built a CRUD component that generates 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 >

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 wrote: > Josh, > > Just what Tor said -- repeaters will just repeat whatever mar

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 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 wrote: > Apache Click is very similar to Wicket: > > http://incubator.apache.org/click/ > > What are the main differences and advantages?

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 >

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

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
r popup, 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,

Re: Application-wide date formate

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

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 wrote: > Hi guy; > > Kindly help me. i would like to

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? regards.

Re: Wicket Layout

2010-02-07 Thread Josh Kamau
ons 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: > >

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
asy 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 wrote: > > > Hi guys; > > >

Re: Wicket Layout

2010-02-08 Thread Josh Kamau
gt; > Ernesto > > > > References. > > > > [1]-http://layout.jquery-dev.net/documentation.cfm#Example > > > > > > On Mon, Feb 8, 2010 at 6:42 AM, Josh Kamau > wrote: > > > >> Hi guys; > >> > >> I think wicket is the b

Re: Wicket Layout

2010-02-08 Thread Josh Kamau
t; Best, > > Ernesto > > On Mon, Feb 8, 2010 at 1:38 PM, Josh Kamau 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

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 a

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 Ka

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 > wrote: > > > Hi Team; > > > >

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 wrote: > Hi Joshue, > > I believe wicket-contrib-gmap is not active anymore. > You are probably better off with wicket-gmap2 project. > > Regards, > Erik. >

Re: wicket Google maps integration

2010-02-15 Thread Josh Kamau
1.4.1 > > > > 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? > > > > regard

Re: wicket Google maps integration

2010-02-16 Thread Josh Kamau
=#l65 > > An Overlay was clicked, so glatLng is null. > > mf > > 2010/2/16 Josh Kamau > > > Team;; > > > > > > Whats wrong with this code? > > > > The map is being displayed properly and when i click on it, a new marker > is > >

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: users-h...

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

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 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: Offline capable web application

2010-02-19 Thread Josh Kamau
t to the server. There's no need for Wicket on the server, since > the client would provide the user interface. (The client would have to > do that, if it were to be able to run stand-alone.) > > > -Original Message- > From: Josh Kamau [mailto:joshnet2...@gmail.com] &

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 wrote: > Hello everyone, > >

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
on, Mar 1, 2010 at 09:14, Josh Kamau wrote: > > Hi Team; > > > > I am just wondering, are the wicket security features enough or i have > to > > integrate something like apache-shiro ? > > > > How are

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

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
gt; > -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.

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:26 > An: users@wicket.apache.org > Betreff: Re: Handling jquery events > > Thanks Stefan. i will. > > On Wed, Mar 31, 2010 at 12:22 PM, Stefa

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 wrote: > > > 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. > >

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
e were better and the deserialization issue was > fixed, you would blow through your data store quota in no-time due to > the amount of data store in the session. > > If anyone has solutions or further experience with these issues - I'm > all ears! :) > > cheers, > Ri

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

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 wrote: > 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. :) Preferably located so

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

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 wrote: > > just override protected CharSequence getDefaultChoice(Object selected) { > and return this.getChoices.get(0).toString ... but be sure what you do! > -- > Vi

Re: DropDownList

2010-04-19 Thread Josh Kamau
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

Re: dynamic DataTable

2011-07-21 Thread Josh Kamau
wickets AjaxFallbackDefaultDatatable is my favourite component. Josh On 21 Jul 2011 17:23, "Martin Grigorov" wrote: Am I that old or .NET is younger than 10 years ? First tell me what is so complex with wicket-extensions DataTable and I'll tell you how to do it ;-) You *need* to extract the D

Re: RE: How to Catch WebApplication's Destroy()?

2011-07-25 Thread Josh Kamau
are you prohibited from using a DI framework such as guice or spring? it can help you manage your object scope and lifecycle On 26 Jul 2011 07:41, "Miroslav F." wrote: Bad. Wicket application start when you deploy it into Tomcat (it's time when WebApplication.init() is executed) and stop when y

Re: Wicket - TinyMCE/FckEditor

2011-08-01 Thread Josh Kamau
Hi Michal, If you want a really nice and simple Rich Text Editor, take a look at visural-wicket project. Here is the link to the demos - http://wicket.visural.net/examples/app/ regards. Josh. On Tue, Aug 2, 2011 at 8:27 AM, Chris Colman wrote: > Are there any examples of Wicket integrated with

Re: DOUBT & Questions Abt Wicket

2011-08-25 Thread Josh Kamau
Hi there, Please go to www.stackoverflow.com and you will see many such questions. Just search for wicket over there. Josh. On Thu, Aug 25, 2011 at 10:08 AM, Shunmuga Raj wrote: > Hi All, > > I was a beginner to wicket. I have some doubts and questions > abt wicket. > > Questions:

Re: Community tools

2011-10-06 Thread Josh Kamau
I like the mail. Atleast i can get the answers even on my not so smart phone. Josh. On Fri, Oct 7, 2011 at 6:43 AM, Chris Colman wrote: > >Source management and bugs are also outdated. The version on github is > much > >better. > > I recently had to get up to speed with github. Not sure what all

Re: Community tools

2011-10-07 Thread Josh Kamau
th. > > > > > > There are a few opensource implementations available: > > > > > > http://gitorious.org/shapado (used by debian at http://ask.debian.net/ > ) > > > http://www.osqa.net/ > > > > > > I do like the SO style (never been a

onInitialize or Constructor

2011-10-19 Thread Josh Kamau
Hi wicketeers ; Which is the recommended way of initializing page components: onInitialize() or Constructor ? regards. Josh.

Re: onInitialize or Constructor

2011-10-19 Thread Josh Kamau
Thanks. Its clear now. On Wed, Oct 19, 2011 at 4:01 PM, Andrea Del Bene wrote: > Hi, > > when onInitialize is called, component has already been inserted into its > hierarchy so you can call getParent() or getPage() safely. > > Hi wicketeers ; >> >> Which is the recommended way of initializing p

Re: DataView or GridView with two columns by item

2011-10-25 Thread Josh Kamau
You can always use component#renderBodyOnly(true) method to ensure that the containers markup is not rendered. Josh. On Tue, Oct 25, 2011 at 2:33 PM, Tito wrote: > Hi, > > Wicket container works ok! > But making trs webmarkupcontainers doesn't allow me to populate items of > the > table because

Re: DataView or GridView with two columns by item

2011-10-25 Thread Josh Kamau
attribute of to add Odd or Even. > > Tito > > 2011/10/25 Josh Kamau > > > You can always use component#renderBodyOnly(true) method to ensure that > the > > containers markup is not rendered. > > > > Josh. > > > > On Tue, Oct 25, 2011 at 2:

Re: An extensive RIA technology comparison matrix including Wicket

2011-10-26 Thread Josh Kamau
Looks like crap to me.. On Wed, Oct 26, 2011 at 9:08 PM, Igor Vaynberg wrote: > missing a green dot in "Framework extensions are done in Java" - what > else are the done in? > > missing a green dot in "Application oriented" - wicket is both page > and application oriented - depends on how you wan

Toggling Web markup container visibility

2011-10-30 Thread Josh Kamau
Hi there; I want to toggle a visibility of a group of components. So i have put them in a WebMarkupContainer and overriden the isVisible method to return the value gotten from a check box. The webmarkupcontainer is not toggled as expected when i added it to the target object. The individual form

Re: Toggling Web markup container visibility

2011-10-30 Thread Josh Kamau
) in there Cheers Hans Am 30.10.11 21:14 schrieb "Josh Kamau" unter : > Hi there; > > I want to toggle a visibility of a group of components. So i have put them > in a ... - To unsubscribe, e-mail: users-u

Re: Toggling Web markup container visibility

2011-10-30 Thread Josh Kamau
It worked perfectly. Thanks for the hint Hans. Josh On Sun, Oct 30, 2011 at 11:11 PM, Josh Kamau wrote: > thanks. will try that > > On 30 Oct 2011 23:06, "Hans Lesmeister" > wrote: > > Hi, > > You should setOutputMaarkupPlaceholder to true (sorry probably

Re: Apache Wicket is a Flawed Framework

2011-11-18 Thread Josh Kamau
Gaetan; I also like starting from a book. Then read the (scattered) docs and wiki when am looking for a solution to specific issues. Some projects have an official user guide that is downloadable as pdf or read online as html. I know documentation is one of the the most boring tasks for developers

Re: Apache Wicket is a Flawed Framework

2011-11-18 Thread Josh Kamau
"- did not yet try out Ajax with Wicket, so I have no opinion on that " In my opinion, ajax is the killer feature. Give it a try. Josh. On Fri, Nov 18, 2011 at 3:07 PM, heikki wrote: > I have tried out the Wicket framework and many things I really like about > it. > Some observations: > > > -

Re: Newbie Questions: Getting Plain HTML

2011-11-27 Thread Josh Kamau
Hi there, Look for instructions on how to remove wicket tags here: https://cwiki.apache.org/WICKET/how-to-remove-wicket-markup-from-output.html. Also look around to learn how to do a thousand other things in wicket. Kind regards. Josh. On Sun, Nov 27, 2011 at 3:42 AM, Em wrote: > Hello list, >

Re: AjaxFallbackDefaultDataTable Refresh Data Provider

2011-12-03 Thread Josh Kamau
Hi Matt; Make a dynamic dataprovider as follows: public abstract class UserDataProvider extends SortableDataProvider { public UserDataProvider(){ setSort("id", SortOrder.ASCENDING); } public Iterator iterator(int start, int count) { return User.getItems(getSearchPara

Re: Integrating Google maps with wicket web application

2011-12-06 Thread Josh Kamau
Yes . Google for Wicket gmap2 component. I think its in wicketstuff project. regards. Josh. On Wed, Dec 7, 2011 at 9:36 AM, raju.ch wrote: > Hi folks, > Is there any plugin or component directly in wicket for Integrating Google > maps? > > -- > View this message in context: > http://apache-wic

Re: Integrating Google maps with wicket web application

2011-12-06 Thread Josh Kamau
Thanks Martin. On Wed, Dec 7, 2011 at 10:13 AM, Martin Grigorov wrote: > http://repo1.maven.org/maven2/org/wicketstuff/wicketstuff-gmap2/1.5.3/ > > This is the latest version > > On Wed, Dec 7, 2011 at 8:12 AM, raju.ch > wrote: > > Thank you very much josh > > > > -- > > View this message in con

Re: problems with AjaxFallbackLink on IE

2011-12-07 Thread Josh Kamau
Yea. By doing a full page refresh. And if you use AjaxFallback* components, the components will automatically do a full page refresh if ajax is disabled on the browser. Or may be i didnt get the question. Josh On Wed, Dec 7, 2011 at 12:38 PM, cosmindumy wrote: > And another question.. > Is th

Getting abstolute path to WEB-INF directory

2012-01-13 Thread Josh Kamau
Hi There ; How do i get the absolute path to the WEB-INF directory in wicket 1.5 ? regards. Josh

Re: Getting abstolute path to WEB-INF directory

2012-01-13 Thread Josh Kamau
Oh i got it. String path = WebApplication.get().getServletContext().getRealPath("/WEB-INF") ; regards. Josh. On Fri, Jan 13, 2012 at 9:51 PM, Josh Kamau wrote: > Hi There ; > > How do i get the absolute path to the WEB-INF directory in wicket 1.5 ? > > regards. > Josh >

Re: How do I write my first Apache Wicket program on NetBeans IDE?

2012-01-19 Thread Josh Kamau
If i were you i would learn how to create a project with maven first. Josh On Thu, Jan 19, 2012 at 12:53 PM, Ian Marshall wrote: > The answer might depend in part upon which web server you want to use. > > NetBeans ships with Tomcat. There are others which one can use. I stopped > using Tomcat a

Re: regarding sort property

2012-01-19 Thread Josh Kamau
Hi there ; I think the simplest option would be to put a boolean field on the entity that you are sorting. Then add the column as usual (e.g using AbstractColumn the checkbox) . Then sorting will be done just as in the other fields. Josh. On Thu, Jan 19, 2012 at 7:31 PM, ridaa wrote: > Hi, > >

Re: What to add to pom.xml to use hibernate?

2012-01-21 Thread Josh Kamau
Hi Daniel; For personal projects (Where clients wont say what to use), i use Ebean orm (www.avaje.org) . Its simple. You annotate your domain objects with JPA annotations, then add ebean.properties file in your "resources" directory and thats all. The rest is calling Ebean.save(instance), Ebean.de

Re: Google bot see my site with errors!!

2012-01-30 Thread Josh Kamau
Does your homepage constructor have any arguments? Josh. On Tue, Jan 31, 2012 at 2:23 AM, Paolo wrote: > Google can't see my web site! > I tried to subscribe my site domain to some Google and Other company > services, i.e to be a publisher > > I think that some bots see my site with errors!! In

Re: help with form submit

2012-01-31 Thread Josh Kamau
Hi ; There are many ways of doing that. For now i will assume that you are not using ajax. I will assume that you are using Model . you can do this. on your page, add a message property. private String message ; //then add a label that reads and rights to the message add(new Label("mylabe

Re: help with form submit

2012-01-31 Thread Josh Kamau
To use ajax, just and the label in my previous example in your instance of AjaxRequestTarget and make sure you have set OutputMarkupId to true for the label. Now if you want to submit the form via ajax, you can use an AjaxSubmitLink Josh. On Tue, Jan 31, 2012 at 12:07 PM, srinash wrote: >

Re: Shrinking the session size, simply by zipping it. Saved my day.

2012-02-19 Thread Josh Kamau
Thanks for the post. I wish this could be integrated into the core. Josh. On Mon, Feb 20, 2012 at 5:32 AM, robmcguinness < robert.mcguinness@gmail.com> wrote: > very nice thanks! > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Shrinking-the-session-size-s

Re: Shrinking the session size, simply by zipping it. Saved my day.

2012-02-20 Thread Josh Kamau
> > Best regards, > Emond > > On Monday 20 February 2012 10:48:52 Josh Kamau wrote: > > Thanks for the post. > > > > I wish this could be integrated into the core. > > > > Josh. > > > > On Mon, Feb 20, 2012 at 5:32 AM, robmcguinnes

Re: Announcing "Built with Wicket"

2012-02-20 Thread Josh Kamau
The list is likely to be too long. May be you could add categories or tags e.g ecommerce, social networking, cms, . Josh. On Mon, Feb 20, 2012 at 4:00 PM, Martijn Dashorst < martijn.dasho...@gmail.com> wrote: > We all know that Apache Wicket is an amazing framework for building > web applica

Re: double click on AjaxSubmitLink and page expired

2012-03-06 Thread Josh Kamau
How about something as easy as checking if the session has been cleared before calling set response page... e.g if(sessionNotClear...){ session.clear(); setResponsePage() } On Tue, Mar 6, 2012 at 2:16 PM, rebecca wrote: > sorry - i forgot - I'm using wicket 1.4.18 > > -- > View this

Re: Ajax DropDownChoice messing DDC Model :S

2012-03-11 Thread Josh Kamau
Your otherDDC does not have a model, show us how you are creating it and i will tell where the mistake is . Josh On Sun, Mar 11, 2012 at 7:12 PM, jhonnytunes wrote: > Hi Wicket gurus. > > I want the behaivor of AJAXchange the models after updatings the selecction > of the make like the example

Re: I want update value in second textfield when i type something in second Textfield

2012-03-12 Thread Josh Kamau
Did you mean update textfield1 when something is typed on textfield2? On Mon, Mar 12, 2012 at 3:02 PM, ajit.khule33 wrote: > Please tell me how it will get updated when event on one textfield > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/I-want-update-value-i

Re: I want update value in second textfield when i type something in second Textfield

2012-03-12 Thread Josh Kamau
Try this //at the top of the your class private String ltpPriceCE = "" ; txtLtpPriceCE = new TextField("txtwicketid", new Model(){ public void setObject(String object) { ltpPriceCE = object } public String getObject(){ return ltpPriceCE ; } }

  1   2   3   >