Re: Strange error

2010-04-22 Thread Dipu
are you using the sysdeo tomcat plugin for eclipse. We had the same issue y'day and doing this fixed the issue - compile the files in the DevLoader.zip and jar it in place it in tomcat/common lib folder. dipu On Wed, Apr 21, 2010 at 1:19 PM, Objelean Alex alex.objel...@gmail.com wrote: Hi! My

Re: Strange error

2010-04-22 Thread Dipu
sorry, ignore my previous message ,problem seems to be some thing else On Thu, Apr 22, 2010 at 8:38 AM, Dipu dipu@googlemail.com wrote: are you using the sysdeo tomcat plugin for eclipse. We had the same issue y'day and doing this fixed the issue  - compile the files in the DevLoader.zip

Re: Multiple choice checkboxes

2009-09-22 Thread Dipu
take a look at checkGroup and check, looks like that is what you are after. please don't do duplicate posts on the list, that would ony help in annoying the, happy to help, regular repliers on this list -dipu On Tue, Sep 22, 2009 at 2:37 PM, Sadhna Ahuja sadhna.ah...@nisc.coop wrote

Re: Form and PageParameters

2009-09-07 Thread Dipu
you can call YourForm.this.getModelObject() in your forms onSubmit or the buttons onSubmit method. that would return the model object bound to your CompoundPropertyModel and you model object would have all the updated values -dipu On Mon, Sep 7, 2009 at 11:58 AM, cmoulliardcmoulli

Re: AjaxButton onSubmit and Submit Form order...

2009-09-07 Thread Dipu
have a look at AjaxLazyLoadPanel, looks like thats what you are looking for -dipu On Mon, Sep 7, 2009 at 4:10 PM, Arnaud Garciaarn...@imagemed-87.com wrote: Hi List, I want to add a custom anim gif while the page is rendering... To do this, I created an AjaxButton and a Form

Re: How to get Dynamic value of TextField

2009-08-27 Thread Dipu
me some samples ThanksRegards, Gerald A On Wed, Aug 26, 2009 at 7:20 PM, Dipu dipu@googlemail.com wrote: is the text field in a form ? do you have a model attached to the form or the text field ? when you submit the form or click the button the input value will be updated

Re: How to get Dynamic value of TextField

2009-08-26 Thread Dipu
is the text field in a form ? do you have a model attached to the form or the text field ? when you submit the form or click the button the input value will be updated to the model and you can read it from the model. hope that make sense. regards On Wed, Aug 26, 2009 at 2:45 PM, Gerald

Re: Page Expire

2009-06-23 Thread Dipu
isn't it container specific ? On Tue, Jun 23, 2009 at 10:57 AM, srinivassrinivas.r...@sifycorp.com wrote: Hi, After how much time will we get the page expire in wicket . Please give me the replay if any one know this . Thanks in advance. Regards, Srinivasa Raju CH. Get your world in

Re: [VOTE] Release Wicket 1.4-rc5

2009-06-09 Thread Dipu
[X ] Yes release 1.4-rc5 [ ] No, don't release it On Tue, Jun 9, 2009 at 4:08 PM, Jeremy Thomerson jer...@wickettraining.com wrote: I've created a release for Wicket 1.4-rc5.  Until it is officially released, you can download from the following locations: SVN Tag:

Re: wicket and jquery

2009-05-29 Thread Dipu
take a look at this https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/jquery-parent -dipu 2009/5/29 Dorothée Giernoth dorothee.giern...@kds-kg.de: Hello everyone, i know this might sound a little weird and naive and maybe stupid ... I dunno, I'll ask

Re: How to keep fields between pages

2009-05-22 Thread Dipu
can't you store the List in the session when you move to other page's and get it from session when you get back. -dipu On Fri, May 22, 2009 at 12:46 PM, Lorenzo Bolzani l.bolz...@gmail.com wrote: Hi, I'm trying to keep a page state between requests. I know this should be a very simple thing

Re: New site developed in wicket - WWW.FITCOMPLEX.SK

2009-04-21 Thread Dipu
Looks nice !, congrats On Mon, Apr 20, 2009 at 5:22 PM, Stefan Simik stefan.si...@gmail.com wrote: New site about health, nutrition, exercise and life stylehttp://www.fitcomplex.sk/start We are using stateless pages for public interface, and stateful ajaxified pages for admin interface.

Re: Problem in Wicket Stuff - Jquery - DatePicker

2009-02-17 Thread Dipu
the issue, i didn't dig deep into it. regards dipu On Tue, Feb 17, 2009 at 10:57 AM, Martin Grigorov mcgreg...@e-card.bg wrote: I could do it but why it should be lower cased ? What will happen with months (MM)? They will become minutes (mm). Is this correct ? I see there is sdf.toPattern

Re: Problem in Wicket Stuff - Jquery - DatePicker

2009-02-17 Thread Dipu
Cheers Dipu On Tue, Feb 17, 2009 at 12:30 PM, Martin Grigorov mcgreg...@e-card.bg wrote: Ok, I see. The JS library works with lower case formats. Fixed with r4575. Additionally I think you are using the old jquery. The one I fixed is at https://wicket-stuff.svn.sourceforge.net/svnroot

Problem in Wicket Stuff - Jquery - DatePicker

2009-02-16 Thread Dipu
) { format_ = ((ITextFormatProvider) component).getTextFormat().toLowerCase(); i have created a patch, can some one apply the patch please. regards dipu Index: src/main/java/org/wicketstuff/jquery/datepicker/DatePickerBehavior.java

Re: autosave

2009-02-04 Thread Dipu
have a look at AbstractAjaxTimerBehavior dipu On Wed, Feb 4, 2009 at 2:13 PM, Juri Prokofjev proj...@gmail.com wrote: Hello, Is there any way to implement similar functionality like in gmail? When you have typed a big letter and computer was accidentally shutdowned then it's always possible

Re: mssql connection problem

2009-02-02 Thread Dipu
://xxx.xxx.xxx.xxx:port;DatabaseName=db_name/ /Context hope this helps cheers dipu On Mon, Feb 2, 2009 at 10:10 AM, Ashis chettri.as...@gmail.com wrote: Hello all, i have problem regarding mssql connection /*Code Snippet for MSSQL connection***/ public static Connection getSqlConnection

Re: Ajaxified Notification

2009-01-30 Thread Dipu
take a look at AjaxSelfUpdatingTimerBehavior and AbstractAjaxTimerBehavior i think this is what you are looking for. Regards Dipu On Fri, Jan 30, 2009 at 6:38 AM, PSkarthic kart...@touchpointindia.com wrote: Hi I am karthic i am using wicket in project and its going well. I have scenerio

Re: Ajaxified Notification

2009-01-30 Thread Dipu
On Fri, Jan 30, 2009 at 10:04 AM, PSkarthic kart...@touchpointindia.com wrote: Thank you for your reply. Ok i will try AbstractAjaxTimerBehavior but tell me can server notify the client on particular situation. That is many browser(many client logged in) may opened and accessing the wicket

Re: HTML markup not found ?

2009-01-28 Thread Dipu
could you please check if your IDE is copying the markup file to the target folder. check if HomePage.html is there in the folder where HomePage.class is. regards Dipu On Wed, Jan 28, 2009 at 12:25 PM, Antoine Roux antoine.r...@net-vitesse.com wrote: Hi, I am new to Wicket and I am currently

Re: getRequest().getPage() always null

2009-01-21 Thread Dipu
I think setting this get().getApplicationSettings().setPageExpiredErrorPage(StartPage.class) in your application's init method will solve your problem if i understand it correctly. regards Dipu On Wed, Jan 21, 2009 at 3:18 PM, Arthur Leigh Allen arthurleigh.al...@yahoo.de wrote: Hello wicket

Re: problem with dropdownchoice

2009-01-20 Thread Dipu
take a look at Wicket Examples - FormInput Dipu On Tue, Jan 20, 2009 at 1:53 PM, itayke exalink...@yahoo.com wrote: Hi, I have this problem with my dropdownchoice with results in WicketMessage: No get method defined for class: class screens.CustomerFilters$FormInput expression: devices

Re: DropDownChoice missing in IE6 when has AJAX

2009-01-19 Thread Dipu
attach a quickstart replicating the problem, this will help some one to take a look. regards Dipu On Mon, Jan 19, 2009 at 3:57 PM, alex.bo...@souzacruz.com.br wrote: Hello All, Anyone has a clue on how can I solve that? tks 01/15/2009 08:34 PM alex.bo...@souzacruz.com.br

Re: User permissions

2009-01-14 Thread Dipu
I think wicket-auth-roles will help you sort this out take a look at MetaDataRoleAuthorizationStrategy.authorize method regards dipu On Wed, Jan 14, 2009 at 9:19 AM, itayh itay.hi...@attractv.net wrote: Hi, I would like to create different users that will have different permissions

Re: POST too large

2009-01-14 Thread Dipu
will this be of any help http://stackoverflow.com/questions/123335/what-causes-java-lang-illegalstateexception-post-too-large-in-tomcat-modjk regards dipu On Wed, Jan 14, 2009 at 10:04 AM, Piller Sébastien pi...@hmcrecord.ch wrote: Hi everybody, I'm not sure if wicket has anything to do

Re: Help: Graphic link in PagingNavigator

2009-01-14 Thread Dipu
extend the PagingNavigator and provide your own markup with the graphics you want. regards dipu On Wed, Jan 14, 2009 at 11:04 AM, freak182 eman.noll...@gmail.com wrote: Hello, The clients wants the and should be graphic. Is there a way to do this? Thanks a lot. Cheers. -- View

Re: POST too large

2009-01-14 Thread Dipu
sorry, pass dipu On Wed, Jan 14, 2009 at 10:17 AM, Piller Sébastien pi...@hmcrecord.ch wrote: Hi, thank you for your response. I'm well aware that increasing the post limit size may do the trick, but this looks like a hack. What to do when something else occurs, ie whatever

Re: Several Ajax features doesn't seem to work in Wicket 1.3.5 and Firefox 3.0.5

2009-01-13 Thread Dipu
it works from me on Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5 Dipu On Tue, Jan 13, 2009 at 11:09 AM, Gohan hal...@gmail.com wrote: If we take the Palette example in Firefox then nothing happens if I select a name and then press the right arrow

Re: URL Help

2009-01-06 Thread Dipu
try getRequestCycle().getRequest().getURL() Regards Dipu On Tue, Jan 6, 2009 at 7:41 AM, Nilesh More nm...@cybage.com wrote: Hi Friends, I want to check the content of the url in my java code. How can I do it? Thanks in advance Nilesh N. More Legal Disclaimer

Re: HOW TO REDIRECT

2009-01-06 Thread Dipu
throw new RestartResponseException(new SuccessPage()); Cheers Dipu On Tue, Jan 6, 2009 at 9:37 AM, PSkarthic kart...@touchpointindia.com wrote: Thanks for your reply redirectToInterceptPage is not working After login button is clicked the control is passed to verify page in that i have code

Re: HOW TO REDIRECT

2009-01-06 Thread Dipu
it depends on your usecase, if you want to redirect conditionally that's the way to do it ( as far as i know ) dipu On Tue, Jan 6, 2009 at 9:58 AM, PSkarthic kart...@touchpointindia.com wrote: Thanks very much for ur help, its working, but is that a properway to divert to success or failure

Re: URL Help

2009-01-06 Thread Dipu
) Returns a URL that references a shared resource through the provided resource reference. Cheers Dipu On Tue, Jan 6, 2009 at 11:33 AM, Nilesh More nm...@cybage.com wrote: Hi I used the method but it's giving the url of the component that I am clicking. Actually I wanted to get

Re: how Checkbox can be showed with checked when it value is matched?

2008-12-30 Thread Dipu
it works for me, if its not working for you show the list your code or attach a quickstart. Regards Dipu On Tue, Dec 30, 2008 at 1:08 AM, wch2001 wch2...@hotmail.com wrote: Thank you a lot CheckBox(personItem.personReceiveEmailOnDeals, new PropertyModelBoolean

Re: Twenty Six Wicket Tricks

2008-12-30 Thread Dipu
i will surely buy a copy Dipu On Tue, Dec 30, 2008 at 8:32 AM, Jonathan Locke jonathan.lo...@gmail.com wrote: Well, over the break here I've started something I swore I would never do again (well, two things, if you include the JavaOne talk I'm working on). I'm writing a (hopefully

Re: Regarding DropdownChoice

2008-12-30 Thread Dipu
i think you have two options here 1. you can add an AjaxFormComponentUpdatingBehavior to the dropdown or 2. override wantOnSelectionChangedNotifications method of the dropdown choice first one as the name says is ajax based and second one will do roundtrip Dipu On Tue, Dec 30, 2008 at 9:20 AM

Re: different validations based on different submit button click

2008-12-30 Thread Dipu
try form.findSubmittingButton() or better you can override onSubmit() method of each button regards dipu On Tue, Dec 30, 2008 at 3:53 PM, miro miroconn...@yahoo.com wrote: I have a foprm with several buttons representing actions , based on different action i want different validations so

Re: how Checkbox can be showed with checked when it value is matched?

2008-12-29 Thread Dipu
setPersonReceiveEmailOnDeals(boolean personReceiveEmailOnDeals) { this.personReceiveEmailOnDeals = personReceiveEmailOnDeals; } } } Regards Dipu On Mon, Dec 29, 2008 at 9:46 AM, wch2001 wch2...@hotmail.com wrote: Dear all

Re: Wicket and Javascript framework integration

2008-12-24 Thread Dipu
check this https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/jquery-parent Dipu On Wed, Dec 24, 2008 at 6:15 AM, T C tc_wic...@yahoo.com wrote: I understand all integrations may be different but has anyone posted a recipe for how to create an integration

Re: debugging

2008-12-23 Thread Dipu
use the Sysdeo Eclipse Tomcat Launcher plugin http://www.eclipsetotale.com/tomcatPlugin.html Cheers Dipu On Tue, Dec 23, 2008 at 10:34 AM, Björn Tietjens bjor...@web.de wrote: Hi, I am developing a webapp with wicket on eclipse, deploying as war, using a local tomcat for testing. What

Re: Tree and Frames

2008-11-28 Thread Dipu
http://svn.apache.org/repos/asf/wicket/trunk/wicket-examples http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4-rc1 Regards Dipu On Fri, Nov 28, 2008 at 3:21 PM, HansDePrez [EMAIL PROTECTED]wrote: I am just starting with Wickets. Is there anybody who is willing to share some example

Re: Hand on session code

2008-11-27 Thread Dipu
)response) { @Override public Page onRuntimeException(Page page, RuntimeException e) { if(PageExpiredException.class.isAssignableFrom(e.getClass())) { return null; } return new ErrorPage(e,page); } }; } Cheers Dipu On Thu, Nov 27, 2008 at 2:18 PM, Eyal Golan [EMAIL PROTECTED] wrote: Thanks

AutoCompleteTextField - gives a type mismatch error on IE - version wicket-1.4-rc1

2008-11-26 Thread Dipu
a patch though. Thanks Dipu Index: src/main/java/org/apache/wicket/extensions/ajax/markup/html/autocomplete/wicket-autocomplete.js === --- src/main/java/org/apache/wicket/extensions/ajax/markup/html/autocomplete/wicket-autocomplete.js

Re: AutoCompleteTextField - gives a type mismatch error on IE - version wicket-1.4-rc1

2008-11-26 Thread Dipu
there. We're not allowed to apply patches unless they're submitted through JIRA and they have the Grant license to ASF for inclusion in ASF works thing checked. On Wed, Nov 26, 2008 at 9:25 AM, Dipu [EMAIL PROTECTED] wrote: wicket-autocomplete.js function function showAutoComplete() line

Re: AutoCompleteTextField - gives a type mismatch error on IE - version wicket-1.4-rc1

2008-11-26 Thread Dipu
(looks wrong to me) just my 2 cents Cheers Dipu On Wed, Nov 26, 2008 at 4:29 PM, Jeremy Thomerson [EMAIL PROTECTED] wrote: This is fixed in trunk - I just ran into the same yesterday. Upgraded from rc1 to snapshot and it's working. -- Jeremy Thomerson http://www.wickettraining.com

Re: ListView broken?

2008-10-23 Thread Dipu
looks like template.getQuestions() is returning a list with items in it which is not of the type QuestionAndAnswer try iterating through the list and logging the class name of each item in it Dipu On Thu, Oct 23, 2008 at 9:46 AM, pieter claassen [EMAIL PROTECTED]wrote: I am getting

Re: ListView broken?

2008-10-23 Thread Dipu
can't you check what exactly is being returned by template.getQuestions() and if its a list what are the items in it On Thu, Oct 23, 2008 at 10:10 AM, pieter claassen [EMAIL PROTECTED]wrote: Hi Dipu, I tried that but when I do the following: protected void populateItem

Re: ListView broken?

2008-10-23 Thread Dipu
. There are two objects in the list and they are both QuestionAndAnswer objects ++DEBUG++: class com.musmato.model.QuestionAndAnswer ++DEBUG++: class com.musmato.model.QuestionAndAnswer Regards, Pieter On Oct 23, 2008, at 11:18 AM, Dipu wrote: can't you check what exactly is being returned

Re: AutoCompleteTextField problem

2007-12-05 Thread Dipu Seminlal
can you please try enclosing the dropdown in a webmarkupcontainer and repaint the container instead of repainting the whole form. That will work. regards dipu On Dec 5, 2007 2:23 PM, Dipu Seminlal [EMAIL PROTECTED] wrote: agreed, onBlur doesn't seem to work, in my project had added onChange

Re: Get Value entered in CheckBoxMultipleChoice and TextFields

2007-11-29 Thread Dipu Seminlal
take a look at the CheckBoxMultipleChoicePage in the wicket examples, that will give you the idea, i have not used it myself though. regards -dipu On Nov 29, 2007 12:49 PM, tsuresh [EMAIL PROTECTED] wrote: Hello every body, I have got the problem again, I have a form to add new Role which

Re: Populate form according to selected item in dropdownchoice

2007-11-27 Thread Dipu Seminlal
have a look at the attached files, thats based on your code snippet, you will get the idea. regards dipu On Nov 27, 2007 7:17 AM, tsuresh [EMAIL PROTECTED] wrote: Hi Dipu, Could you please tell me what to write in the method onSelecitionChanged(). It would be easier for me to understand

Re: Populate form according to selected item in dropdownchoice

2007-11-26 Thread Dipu Seminlal
on the onChange event of the dropdown. regards Dipu On Nov 26, 2007 7:14 AM, tsuresh [EMAIL PROTECTED] wrote: Hello wicketeers, I have a form to edit the attributes of User. User has the attributes username, mail and role.I have a dropdownchoice filled with list of users. When I select the user his

Re: Wicket Stuff JQuery + Wicket Ajax

2007-11-22 Thread Dipu Seminlal
AjaxCalldecorator. Thanks Dipu On Nov 21, 2007 4:37 PM, Dipu Seminlal [EMAIL PROTECTED] wrote: Hi All, I am trying to use the Wicket Stuff JQuery - Drag and Drop feature, I constructed simple list as in the example and everything works fine, Now i add a new item to the list, i add

Re: Getting started

2007-11-22 Thread Dipu Seminlal
We don't do imports, we extends ! checkout markup inheritance http://cwiki.apache.org/WICKET/markup-inheritance.html regards dipu On Nov 22, 2007 2:48 PM, Gervais [EMAIL PROTECTED] wrote: Hy all, I'm new in the famous wicket world ! I need to start learning Wicket but i can't found docs

Re: Getting started

2007-11-22 Thread Dipu Seminlal
() { YourStartupContentObject foo = fetchTheContent(); add(new Label(message1, foo.getMessage1())); add(new Label(message2, foo.getMessage2())); add(new MultilineLabel(message2, foo.getparagraph())); } Hope you get the Idea regards dipu On Nov 22, 2007 3:23 PM, Gervais [EMAIL PROTECTED] wrote

Re: Getting started

2007-11-22 Thread Dipu Seminlal
Is it not possible to pass those objects itself to the page in the constructor. Thats how i do it, may be i don't understand your problem correctly, hopefully someone else here will be able to help you. regards dipu On Nov 22, 2007 4:01 PM, Gervais [EMAIL PROTECTED] wrote: Ho, yes i imagine

Re: How can I switch page direction (LTR-RTL)?

2007-11-15 Thread Dipu Seminlal
():image.getThumbnailURL(); if(url == null || url.equals()) { myImage.setVisible(false); } else { AttributeModifier am = new AttributeModifier(src, new Model(url)); myImage.add(am); } cheers -dipu On Nov 15, 2007 7:29 AM, nlif [EMAIL PROTECTED] wrote: Thanks. What is the attribute

Re: how to call a javascript function?

2007-11-15 Thread Dipu Seminlal
override the onComponentTag of the form object, hope this helps protected void onComponentTag(final ComponentTag tag) { super.onComponentTag(tag); tag.put(onSubmit, return yourValidateFunction(); } cheers -dipu On Nov 15, 2007 3:23 PM, raybristol [EMAIL PROTECTED

Re: required field in a form, help :)

2007-11-14 Thread Dipu Seminlal
setDefaultFormProcessing(false) on your cancel buttom Regards Dipu On Nov 14, 2007 11:05 AM, raybristol [EMAIL PROTECTED] wrote: Hi, I have some inputs in a form, some are required field, they work fine when I press 'submit' button, however, I also include a cancel button, in which onclick

Re: working with JSP problem, thanks!

2007-11-14 Thread Dipu Seminlal
-pattern/Admin2/*/url-pattern /servlet-mapping -dipu On Nov 14, 2007 12:23 PM, raybristol [EMAIL PROTECTED] wrote: Hi, my wicket pages need to be worked with some other jsp pages, and for some reason I need two startup place so in xml conf files I got: servlet servlet

Re: Problem deploying the app as portlet in Jetspeed

2007-11-14 Thread Dipu Seminlal
logged to jetspeed.log and catalina.out. regards dipu On Nov 14, 2007 2:33 PM, Ate Douma [EMAIL PROTECTED] wrote: Hi Dipu, I do need the possible errors from jetspeed.log and maybe catalina.out to help. Without that, I really don't know what's going wrong and what has an initialization

Re: Problem deploying the app as portlet in Jetspeed

2007-11-14 Thread Dipu Seminlal
PROTECTED] wrote: Hi Dipu, I do need the possible errors from jetspeed.log and maybe catalina.out to help. Without that, I really don't know what's going wrong and what has an initialization failure here. Ate Dipu Seminlal wrote: Hi all, I tried to deploy my application

Re: Problem deploying the app as portlet in Jetspeed

2007-11-14 Thread Dipu Seminlal
sorry, my bad, found the reason why , i had a conflicting jar in the class path. Initialization failure has gone now. I am not there yet , i will ping with other problems. many thanks for the patience. cheers dipu On Nov 14, 2007 3:00 PM, Dipu Seminlal [EMAIL PROTECTED] wrote: sorry , i found

Problem deploying the app as portlet in Jetspeed

2007-11-13 Thread Dipu Seminlal
/*/url-pattern /servlet-mapping has anyone seen this before ? Regards Dipu - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

IExceptionResponseStrategy gone from 1.3

2007-11-01 Thread Dipu Seminlal
) and do it, is the right direction to take ? Regards Dipu

Re: Two forms on the same page

2007-11-01 Thread Dipu Seminlal
yes its possible to have two forms in the same page. if you could provide some more details, you are likely to get more helpful response :) Cheers Dipu On 11/1/07, Cristi Manole [EMAIL PROTECTED] wrote: Hello, Simple question :) : Is it possible to have two forms on the same page

Re: Synchronizing AutoCompleteTextField with a checkbox

2007-11-01 Thread Dipu Seminlal
hmmm, thats even better :) On 11/1/07, WicketKeeper [EMAIL PROTECTED] wrote: I'm a dumdum. The answer is to use AjaxCheckBox (duhh) Cheers WK WicketKeeper wrote: Hi I have an autocomplete field object with the getChoices method overridden, which works just fine. Next to it I

Re: Synchronizing AutoCompleteTextField with a checkbox

2007-11-01 Thread Dipu Seminlal
. Regards Dipu On 11/1/07, WicketKeeper [EMAIL PROTECTED] wrote: Hi I have an autocomplete field object with the getChoices method overridden, which works just fine. Next to it I have a checkbox, which when checked alters the logic in getChoices so that the string is interpreted as a regular

Re: IExceptionResponseStrategy gone from 1.3

2007-11-01 Thread Dipu Seminlal
stub return new ErrorPage(e,page); } }; } or do you mean something else ?? Kind Regards Dipu On 11/1/07, Igor Vaynberg [EMAIL PROTECTED] wrote: override requestcycle.onruntimeexception() -igor On 11/1/07, Dipu Seminlal [EMAIL PROTECTED] wrote: Hi

Re: PagingNavigator with custom images

2007-10-26 Thread Dipu Seminlal
What i did was had a dummy extension of the Paging Navigator and Provided Markup for the extension and used it where ever needed. So that you can modify the markup as you want it. Regards Dipu On 10/26/07, Swaroop Belur [EMAIL PROTECTED] wrote: It looks like you will have to copy that markup

Re: Confirmation message after form submit

2007-10-25 Thread Dipu Seminlal
I think you can make use of a modal window to do this Regards Dipu On 10/25/07, Federico Fanton [EMAIL PROTECTED] wrote: Hi everyone! I have a form with a submit button, and I need to implement a sequence like this: - user presses the button - form submit - server-side validation

Re: Confirmation message after form submit

2007-10-25 Thread Dipu Seminlal
yes a modal window, i am not sure about how would you pop up a javascript confirm() after doing a server side validation. there might be a way, but i don't know how Dipu On 10/25/07, Federico Fanton [EMAIL PROTECTED] wrote: On Thu, 25 Oct 2007 10:40:20 +0100 Dipu Seminlal [EMAIL PROTECTED

getRealPath resolving differently on trunk

2007-10-24 Thread Dipu Seminlal
\staticresources\images\logos\xx.gif Does anyone have any ides why this is happening ? Regards Dipu

Re: getRealPath resolving differently on trunk

2007-10-24 Thread Dipu Seminlal
Please ignore this question, that was bad me at work ( very very stupid question ) On 10/24/07, Dipu Seminlal [EMAIL PROTECTED] wrote: Hi all, I am trying to migrate my application to the latest version of wicket, I have something like this, which works as expected in wicket 1.2.6

Re: dummy question, how to set wicket in Deloyment mode?

2007-10-23 Thread Dipu Seminlal
you can specify it in your web.xml On 10/23/07, raybristol [EMAIL PROTECTED] wrote: dummy question, how to set wicket in Deloyment mode? There is a Application#getConfigurationType() but I expect something like Application#setConfigurationType() which does not exist so I thing I must miss

Re: out of memory - wicket 1.2.6

2007-10-09 Thread Dipu Seminlal
we restart every time we redeploy. Dipu On 10/8/07, Jeremy Levy [EMAIL PROTECTED] wrote: Are you redeploying often with out restarting? Jeremy On 10/8/07, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: At my former job, we had a memory leak not in our own application

out of memory - wicket 1.2.6

2007-10-08 Thread Dipu Seminlal
:585) at wicket.RequestListenerInterface.invoke(RequestListenerInterface.java :187) ... 27 more Caused by: java.lang.OutOfMemoryError: Java heap space Regards Dipu

Re: out of memory - wicket 1.2.6

2007-10-08 Thread Dipu Seminlal
i would say very less ,i wouldn't rule it out though. On 10/8/07, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: What are the chances of you having a memory leak in your code? regards Nino Dipu Seminlal wrote: yes it's in production mode Regards Dipu On 10/8/07

Re: New Wicket Portlets Demo available

2007-09-25 Thread Dipu Seminlal
Thats good news, thanks very much. Cheers Dipu On 9/25/07, Ate Douma [EMAIL PROTECTED] wrote: I'm even more happy to announce that Wicket Portlet Support has now been merged into the trunk and already will be part of the upcoming 1.3.0-beta4release! In the next few days or hopefully

Re: Portlet Support

2007-09-24 Thread Dipu Seminlal
team for the great work. Cheers Dipu On 8/30/07, Ate Douma [EMAIL PROTECTED] wrote: Martijn Dashorst wrote: I think it is in a branch in our apache repo: http://svn.apache.org/repos/asf/wicket/branches/wicket-1.3-portlet-support/ Yes, and there is a corresponding JIRA issue

Re: New Wicket Portlets Demo available

2007-09-20 Thread Dipu Seminlal
Hi Ate, I'm interested in the portlet support which you have implemented in wicket. Any idea when it might be merged into the trunk? Regards Dipu On 9/17/07, Ate Douma [EMAIL PROTECTED] wrote: I'm really happy to announce that a new and quite feature complete Wicket Portlets Demo is now

Re: New Wicket Portlets Demo available

2007-09-20 Thread Dipu Seminlal
Thanks Gwyn Regards Dipu On 9/20/07, Gwyn Evans [EMAIL PROTECTED] wrote: Probably fairly soon - we've been looking at the changes and discussing it on the dev list, to try get an idea if it'll cause a significant delay with regards to the aim of getting a 1.3 release out ASAP. Currently

Re: Page expiration

2007-09-20 Thread Dipu Seminlal
Hi, Can you please check if you have any img tags in your html with empty src attributes ? Regards Dipu On 9/20/07, Holda, Dariusz [EMAIL PROTECTED] wrote: Hi, I've came across a strange behaviour. I'm running Wicket app on Jetty server and most of the times it's working fine but from time

Re: applicationwide datePattern

2007-09-06 Thread Dipu Seminlal
try using session.setLocale() thats how i do it. Regards Dipu On 9/6/07, Korbinian Bachl [EMAIL PROTECTED] wrote: Hi, can anyone tell me how to change the default date pattern wicket should use in the whole app? I mean i can do: add(new DatePicker() { protected

Re: Portlet Support

2007-08-31 Thread Dipu Seminlal
Hi All, many thanks for pointing me to the right direction. Regards Dipu On 8/30/07, Matej Knopp [EMAIL PROTECTED] wrote: Hi Ate, thanks for the examples. The progress is tremendous. Awesome. -Matej On 8/30/07, Ate Douma [EMAIL PROTECTED] wrote: Martijn Dashorst wrote: I think

Re: How to get the html combo value in wicket?

2007-08-16 Thread Dipu Seminlal
the selected value will get attached to the model, please take a look at FormInputExample in Wicket Examples. -dipu On 8/16/07, Edi [EMAIL PROTECTED] wrote: My Question is how to get the html combo value using wicket methods? igor.vaynberg wrote: the final value is put into the model

Re: Reacting to DateField change

2007-08-09 Thread Dipu Seminlal
yes i am almost certain, we need to have the event in the markup. if you add an onchange behaviour then you must add onchange in the markup. On 8/9/07, Federico Fanton [EMAIL PROTECTED] wrote: On Thu, 9 Aug 2007 14:10:58 +0100 Dipu Seminlal [EMAIL PROTECTED] wrote: Did you add onchange

Re: Reacting to DateField change

2007-08-09 Thread Dipu Seminlal
target.addComponent(updatedField); } }; dateField.add(behavior); input wicket:id=dateField type=text value= text onchange=blah/ input wicket:id=updatedField type=text value= text / On 8/9/07, Dipu Seminlal [EMAIL PROTECTED] wrote: yes i am almost certain

Re: Reacting to DateField change

2007-08-09 Thread Dipu Seminlal
/07, Federico Fanton [EMAIL PROTECTED] wrote: On Thu, 9 Aug 2007 15:34:03 +0100 Dipu Seminlal [EMAIL PROTECTED] wrote: oh yes you need to set the outputMakupId to true, here you go TextField dateField = new TextField(dateField); D'oh! I'm sorry, I fear I didn't explain myself properly

Re: Reacting to DateField change

2007-08-09 Thread Dipu Seminlal
i checked and i agree with Igor :) On 8/9/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 8/9/07, Dipu Seminlal [EMAIL PROTECTED] wrote: yes i am almost certain, we need to have the event in the markup. if you add an onchange behaviour then you must add onchange in the markup. no, you

loads of Internal error cloning object

2007-07-30 Thread Dipu Seminlal
am seeing loads and loads of Internal error cloning object exception. And worst of all today there was an out of memory error, i am wondering if the repeated occurrence of cloning excpetion has got anything to do with the out of memory error. Regards Dipu 2007-07-30 12:25:45:437 ERROR