Re: Urgent: Business Opportunity

2010-04-13 Thread Steve Olara
Hello All, Sorry, about the mess up. This mail was ment for JWeekend but I by mistake sent it to all users. My appologies. Stephen From: Steve Olara To: users@wicket.apache.org; jweekend_for...@cabouge.com Sent: Tue, 13 April, 2010 11:42:18 Subject: Urgent

Urgent: Business Opportunity

2010-04-13 Thread Steve Olara
Hello,   How are you doing? It has been a long time since we communicated. Am still job searching but working as Web application developer with a small company in Birmingham but in ASP.Net. Because of this one of recuirement company is called me with interest in a contractor that can train and t

Re: I want to volunteer for web app devt

2009-10-08 Thread Steve Olara
Hello Wicketers,   I have just completed my MSc and during the study been learning how to dedvelop enterprise application using Wicket, Spring and Hibernate. I want to futher my skill in web application development.   I am currently based in Birmingham UK and would want to volunteer and work with

Re: how to make user able to choose path to save file

2009-08-12 Thread Steve Olara
Hello,   Am working on a project were I generate a CSV file, I would like the user to be able to select the directory where the file will be saved.   If any one has a sample project or demo please send me a link.   Thanks in advance Stephen

Re:getting SortableListView Value

2009-07-25 Thread Steve Olara
I have a sortableListView on a form   slv=new SortableListView("itemList", "item", mlist2) {     public void populateItemInternal(final ListItem item) {     item.add(new Label("label", item.getModel()));     }     };     formm.add(slv); I would like to get the li

Re: Can not find library for SortableListView

2009-07-22 Thread Steve Olara
Thanks, I managed to find the library, the drag and drop feature is working --- On Wed, 22/7/09, Mathias Nilsson wrote: From: Mathias Nilsson Subject: Re: Can not find library for SortableListView To: users@wicket.apache.org Date: Wednesday, 22 July, 2009, 2:10 PM Maybe some can help with t

Re: Can not find library for SortableListView

2009-07-22 Thread Steve Olara
Hello All,   Am trying to use the SortableListView to use the drag and drop feature of scriptaculous but i can not get the library to add to my project, all I got are javascript files but am not sure if that can be added as libraries, has anyone used this before and take me through setting up th

Re: passing a session to a wizard

2009-07-21 Thread Steve Olara
ests - you should use LoadableDetachableModels then ... Steve Olara wrote: > > Hello All, >   > I have been trying to design functionality of a webapp using wizard. >   > I need to pass a object (Questionnaire) to the wizard page, the object > contains a set of questions. &g

Re: passing a session to a wizard

2009-07-20 Thread Steve Olara
Hello All,   I have been trying to design functionality of a webapp using wizard.   I need to pass a object (Questionnaire) to the wizard page, the object contains a set of questions.   on passing the object, when I try to pick the set of questions using q.getqn() where q is the object, a null se

Re: problem with Wizard wizard = (Wizard) ctor.newInstance(new String[]{"wizard"})

2009-07-16 Thread Steve Olara
is a object of type question border.add(wizard);   In the Markup I use    Wizard will be placed here   This does not render the page.   I get an error saying wizard was declared in markup but not on page.   Can someone see were am going wrong   Stephen --- On Thu, 16/7/09, Steve Olara wrote:

Re: problem with Wizard wizard = (Wizard) ctor.newInstance(new String[]{"wizard"})

2009-07-16 Thread Steve Olara
Hello All,   I am having a problem with wizard.   I managed to run the orignal examples, I need to customise it a little and make the Wizard step class accept a object as a second aurgment of its constructor.   The problem am having is how to call it using   Wizard wizard = (Wizard) ctor.newInsta

Re: Wizard help

2009-07-14 Thread Steve Olara
)  */     public void applyState(){         System.err.println("Applying state!");         if(isComplete()){             configurationData.getObjectContext().commitChanges();         }     } } On Tue, Jul 14, 2009 at 5:47 AM, Steve Olara wrote: > Hello All, > > Am new to wickets and trying to learn

Re: Wizard help

2009-07-14 Thread Steve Olara
Hello All,   Am new to wickets and trying to learn a few things. To do that am trying to build a web application that a user can post a exam and a responder can answer that exam. So far I have managed to Post a set of questions for a exam into the database. my problem is how to answer those ques