Clearing Browser Cookies

2013-01-03 Thread Corbin, James
This is a rehash of a previous discussion on this forum relating to immediate removal of a browser cookie. I have a list view that displays data loaded from 1 or more browser cookies. On this panel I also have a clear action (Link) that when clicked deletes the cookies. The underlying list

Re: Clearing Browser Cookies

2013-01-03 Thread Corbin, James
a fresh cookie list from the browser. Sven On 01/03/2013 08:29 PM, Corbin, James wrote: This is a rehash of a previous discussion on this forum relating to immediate removal of a browser cookie. I have a list view that displays data loaded from 1 or more browser cookies. On this panel I also have

Re: Clearing Browser Cookies

2013-01-03 Thread Corbin, James
. On 1/3/13 1:04 PM, Sven Meier s...@meiers.net wrote: Hi James, deleting a cookie on the response doesn't change the cookies in the HTTP request. A redirect should help to get a fresh cookie list from the browser. Sven On 01/03/2013 08:29 PM, Corbin, James wrote: This is a rehash

Re: Clearing Browser Cookies

2013-01-03 Thread Corbin, James
So, I tried one more thing that worked... setResponsePage(new RedirectPage(somePage)); The first time I tried it was without using the RedirectPage class. J.D. On 1/3/13 4:15 PM, Corbin, James jcor...@iqnavigator.com wrote: Hi Sven, I did try redirecting a couple of ways

ClassCastException (WebResponse)

2012-12-10 Thread Corbin, James
I have the following code that is generating a ClassCastException that I do not fully understand, (WebResponse)RequestCycle.get().getResponse(); The actual type of the value returned is org.apache.wicket.ajax.AbstractAjaxResponse$AjaxResponse. I'm trying to understand why this call returns

Re: ClassCastException (WebResponse)

2012-12-10 Thread Corbin, James
mode you might want to add the DebugBar to your page as well. ~ Thank you, Paul Bors -Original Message- From: Corbin, James [mailto:jcor...@iqnavigator.com] Sent: Monday, December 10, 2012 2:33 PM To: users@wicket.apache.org Subject: ClassCastException (WebResponse) I have the following

Deleting Cookies

2012-12-06 Thread Corbin, James
I have a ListView that renders items that are populated from user cookie data. The ListView contains a clear action that is supposed to delete the cookies then refresh the ListView so it reflects that the cookie data was removed. I have code that executes the deletion of the cookies (works),

Re: Deleting Cookies

2012-12-06 Thread Corbin, James
at 11:09 PM, Corbin, James jcor...@iqnavigator.comwrote: I have a ListView that renders items that are populated from user cookie data. The ListView contains a clear action that is supposed to delete the cookies then refresh the ListView so it reflects that the cookie data was removed. I have

Re: Deleting Cookies

2012-12-06 Thread Corbin, James
:41 PM, Corbin, James jcor...@iqnavigator.comwrote: The ListView is not in a form, which is why I am leaving the default for setReuseItems to false. I am using a LoadableDetachableModel and verified the load that rereads the cookies, does in fact get called after I delete them (reset method

Wicket 6 Ajax Behaviors

2012-11-30 Thread Corbin, James
I have some older javascript code that I am migrating to work with Wicket 6 and not sure how to do so. I had some javascript that was triggering the onclick of an element in the following way, somedomeelement.click(); // post wicket 1.4 this causes error - TypeError: Property 'onclick' of

Convert bookmarkable url to wicket relative url?

2012-11-13 Thread Corbin, James
I need some help with converting a bookmarkable url into a wicket relative url. My intent is to persist the url convert it to a wicket relative url and then redirect to that relative url. I am using Component.urlFor(Class, PageParameters) api to generate the bookmarkable url. Some interesting

Detecting HTML 5 Features in Wicket

2012-11-12 Thread Corbin, James
Is there any built in support for detecting HTML 5 browser features like Web Storage? If not, what is the recommended approach for doing so? I'm looking for a way to detect support for Web (e.g. Local) Storage, so in cases where the browser's do not support it (e.g., IE7), I can use cookies

Re: Detecting HTML 5 Features in Wicket

2012-11-12 Thread Corbin, James
. This is mainly to reduce latency overhead from multiple requests. Thanks, -David Phillips - USAA -Original Message- From: Corbin, James [mailto:jcor...@iqnavigator.com] Sent: Monday, November 12, 2012 9:11 AM To: users@wicket.apache.org Subject: EXTERNAL: Re: Detecting HTML 5 Features

Session Destroy

2012-11-12 Thread Corbin, James
Is there any way in Wicket 6+ to be notified when the session is ABOUT to be destroyed? The UnboundListener.sessionUnbound(…) API is too late in the cycle for me to interact with the session state. Thanks, J.D.

Re: AjaxEditableLabel Issue (Application in Production Mode)

2012-09-26 Thread Corbin, James
) {console.log(text);} On Tue, Sep 25, 2012 at 9:25 PM, Corbin, James jcor...@iqnavigator.com wrote: I have an interesting issue that crept up in the use of the AjaxEditableLabel component in Wicket 1.4.13 (I know, ancient). The component stopped processing the click event that is supposed

AjaxEditableLabel Issue (Application in Production Mode)

2012-09-25 Thread Corbin, James
I have an interesting issue that crept up in the use of the AjaxEditableLabel component in Wicket 1.4.13 (I know, ancient). The component stopped processing the click event that is supposed to cause the editor to render. I was seeing different behavior depending upon the mode of the Wicket

Using a div/span tags for wicket components

2012-09-21 Thread Corbin, James
I'm sure this subject has been discussed before many times, but would like to revisit it to get some thoughts from the community. Consider a Wicket TextField. The typical markup is something like, input type=text wicket:id=someId …/ I would like to, instead, specify a span or a div in the

Re: Using a div/span tags for wicket components

2012-09-21 Thread Corbin, James
classes that extend Panel and next the actual component. It forces us to create public apis like I described in my original post that break encapsulation. J.D. On 9/21/12 10:42 AM, Carl-Eric Menzel cmen...@wicketbuch.de wrote: On Fri, 21 Sep 2012 14:48:05 + Corbin, James jcor

Wicket Examples

2012-05-07 Thread Corbin, James
The wicket examples (www.wicket-library.com/wicket-examples/) seems to be having issues. I select the Contacts Editor option under the repeaters section and I get a permgen error. Is this site working properly? I assume the URL above is appropriate? J.D.

Fusion Charts (IResourceListener)

2012-02-10 Thread Corbin, James
I am using Fusion Charts with Wicket (1.4.13) and implementing IResourceListener. I also have the application configured to encrypt URLs. With this in place, we get a lot of Invalid URL exceptions and I think it has something to do with how we are building our URLs. The url is built using:

GridView with Custom Cell Content

2012-01-20 Thread Corbin, James
Hi, I have a use case where I need to render data in a grid (e.g. Table markup) and for each cell (td), determine its content dynamically. Consider a table where you can drag and drop items from cell to cell and their position is stored. In this scenario, I need to ask the question, for the

Grid Layout Question

2011-12-08 Thread Corbin, James
I have a grid layout where I have the need to ask for the content at a particular grid location. For example, I have a 2x2 grid, give me the component that I should render in slot 2,1. I was wondering if any of the base repeaters that wicket (or wicket-extensions) would provide this kind of

Wicket Wizard Question

2011-08-11 Thread Corbin, James
I have a five step static Wicket Wizard which works great for the most part. I am running on Wicket 1.4.13. I am seeing some odd behavior and stepping through a debugger hasn't yielded any causes so I am reaching out to the forum for help. If I navigate through the wizard by pressing the Next

TextField and Java Number

2011-06-15 Thread Corbin, James
I am creating an input field that should accept numbers only, so I defined my TextField component as follows, TextFieldNumber(String markupId, IModelNumber model) I am forcing the model update by adding AjaxFormComponentUpdatingBehavior(onblur)... The model doesn't appear to be getting

RE: TextField and Java Number

2011-06-15 Thread Corbin, James
: Wednesday, June 15, 2011 3:30 PM To: users@wicket.apache.org Subject: Re: TextField and Java Number Number is abstract. How is TextField supposed to be able to instantiate one using the text? You can't use one of the subclasses? On Wed, Jun 15, 2011 at 5:20 PM, Corbin, James jcor

RE: TextField and Java Number

2011-06-15 Thread Corbin, James
and Java Number Number is abstract. How is TextField supposed to be able to instantiate one using the text? You can't use one of the subclasses? On Wed, Jun 15, 2011 at 5:20 PM, Corbin, James jcor...@iqnavigator.com wrote: I am creating an input field that should accept numbers only, so I

RefreshingView - Comparing Items in List Model

2011-06-01 Thread Corbin, James
I am using a RefreshingView for a fairly simple table layout with the exception that one of columns in the table contains actions to move rows up and down (e.g., re-order rows). My model for the RefreshingView is basically a ListIModelT where T is my POJO. The approach I was going to take was

RE: RefreshingView - Comparing Items in List Model

2011-06-01 Thread Corbin, James
just fine and my manual row reordering logic works perfectly. Regards, J.D. -Original Message- From: Corbin, James [mailto:jcor...@iqnavigator.com] Sent: Wednesday, June 01, 2011 8:56 AM To: users@wicket.apache.org Subject: RefreshingView - Comparing Items in List Model I am using

Wicket's Wizard Component

2011-05-21 Thread Corbin, James
I am attempting to enhance the Wizard's layout by sub-classing Wizard.java. The idea is to change the default markup to suit some specific layout requirements. The problem I am trying to solve is to re-parent the form to the component bound to the wicket:id myOuterWrapperComp, but not sure

RE: Wicket's Wizard Component

2011-05-21 Thread Corbin, James
for components that already work and have long since been forgotten about). IMHO, if you like the code, you might be better off just grabbing a copy of it into your own source tree. Then you can build what you want with impunity. Brian On May 21, 2011, at 11:08 AM, Corbin, James wrote: I am attempting

RE: Wicket's Wizard Component

2011-05-21 Thread Corbin, James
To the core wicket developers, is there any copyright concerns with pulling the Wizard source into my codebase and modifying it? J.D. -Original Message- From: Corbin, James [mailto:jcor...@iqnavigator.com] Sent: Saturday, May 21, 2011 9:37 AM To: users@wicket.apache.org Subject: RE

Wicket Release of 1.4.18?

2011-05-06 Thread Corbin, James
Hello, I have a project running against Wicket 1.4.13 and am considering upgrading to be more current with the latest 1.4.x version (currently 17). I would rather hold off upgrading to Wicket 1.4.17, if Wicket 1.4.18 is planned for a release in the next few weeks. Thoughts, J.D.

RE: Wicket Release of 1.4.18?

2011-05-06 Thread Corbin, James
: Wicket Release of 1.4.18? Why don't you upgrade to 1.4.17 and as soon 18 is relased, you plan to upgrade again? *Bruno Borges* www.brunoborges.com.br +55 21 76727099 On Fri, May 6, 2011 at 4:41 PM, Corbin, James jcor...@iqnavigator.comwrote: Hello, I have a project running against Wicket

Wicket 1.5 RC3

2011-04-05 Thread Corbin, James
I am looking into converting my existing 1.4 project into 1.5RC3 and it's not clear where the code that was previously handled in my overridden WebRequestCycle.onRuntimeException(...) needs to go. The migration page talks about overriding Application.newExceptionMapper(), but I don't see that

RE: JavaScript bug in IE (wicket-event.js)

2011-01-18 Thread Corbin, James
I've encountered errors like this where the browser renders a javascript error relating to undefined variables in various wicket framework javascript files. The only browser/version where I have observed this was in IE6 (don't ask). -J.D. -Original Message- From: Igor Vaynberg

Wicket TextArea - Current Buffer Size?

2011-01-16 Thread Corbin, James
Is it possible to get the current character count from a TextArea component in Wicket by attaching an AjaxEventBehavior? I successfully capture an onkeypress event, but not sure how I am supposed to get the raw input in the TextArea. I know that the model won't be updated until the post has

RE: Wicket TextArea - Current Buffer Size?

2011-01-16 Thread Corbin, James
excuse spelling, formatting, or compiler errors On Jan 16, 2011 5:18 PM, Corbin, James jcor...@iqnavigator.com wrote: Is it possible to get the current character count from a TextArea component in Wicket by attaching an AjaxEventBehavior? I successfully capture an onkeypress event, but not sure how I

Timeframe for Wicket 1.5 Release

2010-12-10 Thread Corbin, James
This question is targeted to the core Wicket product developers. The 1.5 code line is up to its 3rd Maintenance release and was curious (for planning purposes) what the anticipated public release date was... I'm not looking for a specific day, but rather, something like 1st Quarter 2011, 4th

RE: Timeframe for Wicket 1.5 Release

2010-12-10 Thread Corbin, James
Thanks. That is what I was looking for. -Original Message- From: Jeremy Thomerson [mailto:jer...@wickettraining.com] Sent: Friday, December 10, 2010 10:08 AM To: users@wicket.apache.org Subject: Re: Timeframe for Wicket 1.5 Release On Fri, Dec 10, 2010 at 10:46 AM, Corbin, James jcor

IndicatingAjaxButton (Doesn't display indicator in Internet Explorer)

2010-11-30 Thread Corbin, James
I recently noticed that the IndicatingAjaxButton no longer appears to render the asterix in Internet Explorer (all versions including 6,7 and 8). I noticed this after moving to Wicket Version 1.4.13. Has anybody seen this behavior with ajax indicators not displaying in IE? J.D. J.D. Corbin |

Customizing CheckBoxMultipleChoice Images?

2010-05-11 Thread Corbin, James
Hello, I would like to customize the images used for the selected and unselected states of the checkboxes rendered as part of the CheckBoxMultipleChoice component, but not sure how to do this... I've read a few sources that indicate this can be done by specifying a class=styled on the markup

RE: Customizing CheckBoxMultipleChoice Images?

2010-05-11 Thread Corbin, James
styles you want applied -igor On Tue, May 11, 2010 at 9:23 AM, Corbin, James jcor...@iqnavigator.com wrote: Hello, I would like to customize the images used for the selected and unselected states of the checkboxes rendered as part of the CheckBoxMultipleChoice component, but not sure how to do

RE: AjaxFallbackDefaultDataTable Model Not Updating

2010-04-30 Thread Corbin, James
Is the solution to add AjaxFormComponentUpdatingBehavior/AjaxFormChoiceComponentUpdatingBehavior to each of the editable form components? -Original Message- From: Corbin, James [mailto:jcor...@iqnavigator.com] Sent: Thursday, April 29, 2010 4:42 PM To: users@wicket.apache.org Subject

AjaxFallbackDefaultDataTable Model Not Updating

2010-04-29 Thread Corbin, James
A co-worker of mine created an AjaxFallbackDefaultDataTable with editable cells. In this case they are dropdowns. She is dynamically adding rows to the table. If she modifies one of the component drop down (PropertyModel) values in one of the cells and then adds a new row, the changes she

RE: Nested Forms and Multipart Fileupload Issue

2010-03-10 Thread Corbin, James
if (contentType.toLowerCase().startsWith(MULTIPART)) - contentType = application/x-www-form-urlencoded James Carman pisze: You're trying to submit a form via ajax to upload a file? On Tue, Mar 9, 2010 at 4:26 PM, Corbin, James jcor...@iqnavigator.com wrote: This issue seems to pop up in our environment from

RE: Nested Forms and Multipart Fileupload Issue

2010-03-10 Thread Corbin, James
= application/x-www-form-urlencoded James Carman pisze: You're trying to submit a form via ajax to upload a file? On Tue, Mar 9, 2010 at 4:26 PM, Corbin, James jcor...@iqnavigator.com wrote: This issue seems to pop up in our environment from time to time and trying to figure out how to fix

Nested Forms and Multipart Fileupload Issue

2010-03-09 Thread Corbin, James
This issue seems to pop up in our environment from time to time and trying to figure out how to fix it once and for all. We have a page with a form that pops up modal window with a form specified as well. When we try to submit, we get the following exception: java.lang.IllegalStateException:

RE: Nested Forms and Multipart Fileupload Issue

2010-03-09 Thread Corbin, James
Fileupload Issue You're trying to submit a form via ajax to upload a file? On Tue, Mar 9, 2010 at 4:26 PM, Corbin, James jcor...@iqnavigator.com wrote: This issue seems to pop up in our environment from time to time and trying to figure out how to fix it once and for all. We have a page

Planned 1.4.7 Release?

2010-03-04 Thread Corbin, James
Hi, We are currently using Wicket Version 1.4.4 and I believe the release of 1.4.7 is fairly imminent? Could someone shed some light on the expected release timeframe for 1.4.7 and what the recommendation is on upgrading from 1.4.4 to 1.4.7? We have a lot of Ajax behaviors in our code and if

RE: Planned 1.4.7 Release?

2010-03-04 Thread Corbin, James
4, 2010 at 10:55 AM, Corbin, James jcor...@iqnavigator.comwrote: Hi, We are currently using Wicket Version 1.4.4 and I believe the release of 1.4.7 is fairly imminent? Could someone shed some light on the expected release timeframe for 1.4.7 and what the recommendation is on upgrading from

RE: Planned 1.4.7 Release?

2010-03-04 Thread Corbin, James
can download the jars from the temp repo and use them now (or a few days ago). They'll be in the main repo(s) in the next few days. -- Jeremy Thomerson http://www.wickettraining.com On Thu, Mar 4, 2010 at 12:15 PM, Corbin, James jcor...@iqnavigator.comwrote: Awesome. Thanks for the response

RE: Planned 1.4.7 Release?

2010-03-04 Thread Corbin, James
@wicket.apache.org Subject: Re: Planned 1.4.7 Release? Why not just try it: http://repo1.maven.org/maven2/org/apache/wicket/wicket/1.4.7/ Change your version in Maven and see if it picks it up. On Thu, Mar 4, 2010 at 1:15 PM, Corbin, James jcor...@iqnavigator.com wrote: Awesome.  Thanks

Ajax File Upload (Safari and Chrome)?

2010-03-01 Thread Corbin, James
Are there any known issues with the FileUploadField when submitting via Ajax on Safari 4.x or Chrome 5.x? In the AjaxButton.onSubmit(), I am attempting to update other components and it doesn't seem to repaint the component(s) in Safari or Chrome, but does work as I expect in Firefox 3.x.

Conditionally Render Different Fragments (via Radio Choice Selection)?

2010-02-26 Thread Corbin, James
I have radio group (RadioChoice) with two options that conditionally renders one of two fragments. The two fragments are pre-created and then attach onchange ajax behavior to the RadioChoice component that toggles the visibility of the fragments depending upon the selection made for the

RE: Conditionally Render Different Fragments (via Radio Choice Selection)?

2010-02-26 Thread Corbin, James
check the source of the generated HTML, you are seeing the generated placeholder tag for the 2nd fragment so it can be made visible right? -R On Fri, Feb 26, 2010 at 12:04 PM, Corbin, James jcor...@iqnavigator.comwrote: I have radio group (RadioChoice) with two options that conditionally renders

RE: Speeding Up HTML Parse???

2010-02-25 Thread Corbin, James
Thanks Russell. This is good information. I am going to evaluate the server side activity first and then will look into any inefficiencies on the client. J.D. -Original Message- From: Russell Morrisey [mailto:russell.morri...@missionse.com] Sent: Thursday, February 25, 2010 11:39 AM

Speeding Up HTML Parse???

2010-02-24 Thread Corbin, James
I'm profiling our Wicket Application using Google's Speed Tracer Plugin (nice plugin). The profiling tool is showing most of the time spent in two areas, 1) Parsing HTMlL 2) Javascript Valuation (mostly with YUI). What are some of the best practices around developing code

RE: Speeding Up HTML Parse???

2010-02-24 Thread Corbin, James
practices for reducing the initial load time of pages. -Original Message- From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] Sent: Wednesday, February 24, 2010 2:58 PM To: users@wicket.apache.org Subject: Re: Speeding Up HTML Parse??? On Wed, Feb 24, 2010 at 1:26 PM, Corbin, James jcor

RE: RadioChoice in IE7 Known Issue?

2010-02-23 Thread Corbin, James
should debug it and see, as far as i know radiochoice just generates a bunch of input type=radio so all should work. it is inside a form right? -igor On Mon, Feb 22, 2010 at 10:02 AM, Corbin, James jcor...@iqnavigator.com wrote: Hi, I've noticed that the model isn't updated in IE7 when using

RE: RadioChoice in IE7 Known Issue?

2010-02-23 Thread Corbin, James
be submitted via ajax... -igor On Tue, Feb 23, 2010 at 7:30 AM, Corbin, James jcor...@iqnavigator.com wrote: Yeah, its inside a form that is in a modal popup.  It is not a nested form situation. I found some archive messages that talked around the same problem and their findings

RadioChoice in IE7 Known Issue?

2010-02-22 Thread Corbin, James
Hi, I've noticed that the model isn't updated in IE7 when using the Wicket RadioChoice component. This behavior doesn't appear in Firefox. In my code, the RadioChoice component is set to required and even after selecting one of the radio choices, upon submit I get a required field

Bring Panel into View in Browser

2010-02-04 Thread Corbin, James
Hi, I am dynamically adding panel components to my display and eventually the list of panels grows big enough that the most recently added is not visible (not in visible scroll region) in the browser. I am looking for an approach to force the last panel added to scroll into view if it's

Scrolling wicket components into View?

2010-01-26 Thread Corbin, James
Hello, I have a page that I dynamically add components to using a repeating view. At some point in the process, my components are rendered off the visible browser page. Is there a slick way in Wicket to ensure that a component dynamically added to a repeating view is in view on the page?

RE: Help with Wicket Adoption Numbers

2010-01-08 Thread Corbin, James
Have you considered Google Web Toolkit (GWT)? J.D. -Original Message- From: Lester Chua [mailto:cicowic...@gmail.com] Sent: Thursday, January 07, 2010 5:44 PM To: users@wicket.apache.org Subject: Help with Wicket Adoption Numbers Hi, I am facing a hurdle that need crossing in my final

Modal Popups and Forms

2009-12-29 Thread Corbin, James
Hi, I have a modal popup (implemented using YUI 2.8). The modal popup contains a form and the popup's markup is rendered (via YUI js) explicitly to document.body. The reasoning for rendering the YUI javascript to document.body is to address some issue we had with css inheritance that was

RE: Modal Popups and Forms

2009-12-29 Thread Corbin, James
to be multipart by calling setmultipart true, adding a hidden input type=file, etc. -igor On Tue, Dec 29, 2009 at 10:43 AM, Corbin, James jcor...@iqnavigator.com wrote: Hi, I have a modal popup (implemented using YUI 2.8).  The modal popup contains a form and the popup's markup is rendered (via YUI js

RE: File Upload Issues

2009-12-28 Thread Corbin, James
Any feedback on why placing a file upload component on a form in Wicket would cause the ajax behavior to stop working Known issue within the wicket community? J.D. -Original Message- From: Corbin, James [mailto:jcor...@iqnavigator.com] Sent: Friday, December 18, 2009 12:47 PM

RE: File Upload Issues

2009-12-28 Thread Corbin, James
recently, but in 1.4.4 it works for me, see https://issues.apache.org/jira/browse/WICKET-2432 for more details. Is this the same issue for you? Maybe try the quickstart, see if there the ajax is working for you. Regards, Peter 2009-12-28 16:46 keltezéssel, Corbin, James írta: Any feedback on why

MultiPartServletRequest Exception

2009-12-28 Thread Corbin, James
As recent as the 1.4.4 release (dated December 10th, 2009), I started getting the following stack trace. This happens when submitting the form. Note: This doesn't seem to occur with the same code base running against Wicket 1.4.1. Did something break in 1.4.4 relating to this?

RE: MultiPartServletRequest Exception

2009-12-28 Thread Corbin, James
if it detects a file upload field in the form. -igor On Mon, Dec 28, 2009 at 2:28 PM, Corbin, James jcor...@iqnavigator.com wrote: A little more information on this issue, I observed this error after a dialog is popped up that contains a form that isn't multipart.  The page that launches this dialog

RE: MultiPartServletRequest Exception

2009-12-28 Thread Corbin, James
Upgrading to 1.4.5 does not fix the problem. Something else is amiss here. I've even tried explicitly setting the form to multi-part (e.g., myForm.setMultiPart(true)) More investigation is needed. j.D. -Original Message- From: Corbin, James [mailto:jcor...@iqnavigator.com] Sent

RE: File Upload Issues

2009-12-21 Thread Corbin, James
as far back as Version 1.4.1. J.D. -Original Message- From: Ilja Pavkovic [mailto:ilja.pavko...@binaere-bauten.de] Sent: Saturday, December 19, 2009 5:48 AM To: users@wicket.apache.org Cc: Corbin, James Subject: Re: File Upload Issues Hi, did you check the output of the wicket debug

File Upload Issues

2009-12-18 Thread Corbin, James
Hello, I'm having issues in IE6 relating to the the File Upload Control after upgrading to Wicket 1.4.4. If I attempt to put a file upload component onto a form that contains other components that do ajax, everything stops working in regards to ajax. Now I understand that the file

RE: File Upload Issues

2009-12-18 Thread Corbin, James
@wicket.apache.org Subject: Re: File Upload Issues There is a bug in 1.4.4. related to resource loading. Are you sure AJAX has stopped or is it just taking A REALLY LONG TIME? This is the reason they are trying to get 1.4.5 out quickly. D/ On Dec 18, 2009, at 10:15 AM, Corbin, James wrote

RE: File Upload Issues

2009-12-18 Thread Corbin, James
made, but were hoping this was fixed in 1.4.4. I believe we put in a JIRA issue around this problem. I'll try and get those details as well. J.D. -Original Message- From: Corbin, James [mailto:jcor...@iqnavigator.com] Sent: Friday, December 18, 2009 12:47 PM To: users@wicket.apache.org

Wicket-Stuff YUI

2009-12-10 Thread Corbin, James
I have been using the Wicket Wrapper around the YUI library for a while and wondered if there is an api for including a css only file. It appears that all the apis in the YuiHeaderContributor and companion classes only support js files and their dependencies. My use case is that I am

Wicket YUI - Integration (Slider Question)

2009-11-20 Thread Corbin, James
Hello, I am using the framework off the wicket-stuff trunk that wraps yui to work with wicket. I must say it works pretty well. I did have a few questions on the slider that I hoped someone had experience with at solving, 1. I cannot seem to get the tick marks to show up on the

YUI Integration

2009-11-17 Thread Corbin, James
Where in the wicket-stuff library is the most recent attempt at creating a integration layer for YUI? Is it at the trunk level or at the branch level?

Wicket Stuff YUI 2.7+

2009-11-15 Thread Corbin, James
I am considering using some of the Wicket YUI integration that is in the Wicket Stuff project. I also noticed that the implementation seems to only support YUI 2.5.x. Is this a dead project or are there any plans to updated it to use YUI 2.7? If not, I only need a few components in the

RE: Calling IN TO Wicket from JSP

2009-11-12 Thread Corbin, James
So no responses??? Does that mean it cannot be done or its so simple everybody on this distro is stunned by the fact I even posed the question??? :) Anyways, I would appreciate some insight from some of the core Wicket Developers like Igor. Regards, J.D. -Original Message- From: Corbin

RE: Calling IN TO Wicket from JSP

2009-11-12 Thread Corbin, James
, Corbin, James jcor...@iqnavigator.comwrote: So no responses??? Does that mean it cannot be done or its so simple everybody on this distro is stunned by the fact I even posed the question??? :) Anyways, I would appreciate some insight from some of the core Wicket Developers like Igor. Regards

RE: Calling IN TO Wicket from JSP

2009-11-12 Thread Corbin, James
Subject: Re: Calling IN TO Wicket from JSP If you were running the applications on the same server, I would just make a method in my wicket application...for example MyWicketApplication.getUrl() and call that from JSP code directly. Keep it simple. ** Martin 2009/11/12 Corbin, James jcor

RE: Calling IN TO Wicket from JSP

2009-11-12 Thread Corbin, James
to a bookmarkable URL and then it will be easy to create a URL to go into Wicket. -Original Message- From: Corbin, James [mailto:jcor...@iqnavigator.com] Sent: Wednesday, November 11, 2009 4:51 PM To: users@wicket.apache.org Subject: Calling IN TO Wicket from JSP Is it possible to build a wicket

RE: Calling IN TO Wicket from JSP

2009-11-12 Thread Corbin, James
, 2009 at 8:34 AM, Corbin, James jcor...@iqnavigator.com wrote: That is exactly the issue that is causing the problem and what I need clarification on how to do J.D. -Original Message- From: Frank Silbermann [mailto:frank.silberm...@fedex.com] Sent: Thursday, November 12, 2009 9:23

RE: Calling IN TO Wicket from JSP

2009-11-12 Thread Corbin, James
IN TO Wicket from JSP why dont we support them? dont browsers send us urls with query parameters??? -igor On Thu, Nov 12, 2009 at 9:03 AM, Corbin, James jcor...@iqnavigator.com wrote: It seems like Wicket would support URLs with request parameters coming from outside the wicket framework.  I've

RE: Calling IN TO Wicket from JSP

2009-11-12 Thread Corbin, James
with the user, then, would be through Wicket's native mechanisms. Caution is that I've never done this -- I'm just speculating. Frank Silbermann, Memphis, Tennessee On Thu, Nov 12, 2009 at 8:34 AM, Corbin, James jcor...@iqnavigator.com wrote: That is exactly the issue that is causing

Calling IN TO Wicket from JSP

2009-11-11 Thread Corbin, James
Is it possible to build a wicket URL in a JSP that gets forwarded to and handle by the Wicket filter mechanism? This seems like it should be simple but doesn't appear to work right in 1.4.1. We build up a wicketized URL that makes it into the WicketFilter, but that filter strips all the

Urgent: Repeating Markup that contains a Wicket Border

2009-11-05 Thread Corbin, James
Hi, I have some markup I am trying to repeat using a RepeatingView and if the markup that I'm repeating binds to a Wicket Border, I get GPEs. This seems like a bug to me. Is it a bug or am I potentially doing something incorrect. Here is the pertinent markup that is being

Wicket Release Plans for 1.5

2009-10-29 Thread Corbin, James
I noticed that 1.5 maintenance releases are available. Can someone speculate on the release time frame for 1.5? We are contemplating an upgrade from 1.4.1 and want to avoid upgrading to 1.4.3 and then 1.5 immediately after that. Regards, J.D.

RE: Release 1.4.3

2009-10-27 Thread Corbin, James
James, Do you know when the official release of 1.4.3 is happening? By official I mean the Apache Wicket Website updated with the release announcement and links to the official package downloads. J.D. -Original Message- From: James Carman [mailto:jcar...@carmanconsulting.com]

RE: Release 1.4.3

2009-10-27 Thread Corbin, James
:36 AM To: users@wicket.apache.org Subject: Re: Release 1.4.3 Corbin, James wrote: James, Do you know when the official release of 1.4.3 is happening? By official I mean the Apache Wicket Website updated with the release announcement and links to the official package downloads. J.D. Well

RE: Wicket HTML before graphics design with CSS ...

2009-10-27 Thread Corbin, James
Hi, I'll weigh in on this discussion if you don't mind. It sounds like you've already made up your mind on how you want to proceed. You can definitely take the approach you describe below, but it removes some of the freedom from the designer if they have to conform to a preconceived styling

RE: Wicket Wizard Functionality (Extensions)

2009-10-26 Thread Corbin, James
@wicket.apache.org Subject: RE: Wicket Wizard Functionality (Extensions) See https://issues.apache.org/jira/browse/WICKET-2542 Corbin, James-2 wrote: Hi Sven, What exactly am I supposed to implement in the AjaxFormSubmittingBehavior.onSubmit(...)? I've tried everything I can think

RE: Wicket Wizard Functionality (Extensions)

2009-10-25 Thread Corbin, James
the wizard - see Wizard#newButtonBar(). I've done it for our project but I don't have the code available at the moment. Regards Sven Corbin, James wrote: Hi Sven, I'm running the wizard in a modal popup (YUI). One other thing that is happening is when I press the next button in the wizard

Re: Wicket Wizard Functionality (Extensions)

2009-10-24 Thread Corbin, James
AJAX? Are you adding the whole wizard to the request so the button bar is re-rendered? Sven Corbin, James wrote: I am writing a two step wizard using wicket's wizard implementation and having some issues. I am using Wicket 1.4.1. My first wizard step contains a RadioChoice with 3 options

RE: Wicket Wizard Functionality (Extensions)

2009-10-24 Thread Corbin, James
the whole wizard to the request so the button bar is re-rendered? Sven Corbin, James wrote: I am writing a two step wizard using wicket's wizard implementation and having some issues. I am using Wicket 1.4.1. My first wizard step contains a RadioChoice with 3 options. I would like the Finish

RE: Wicket Wizard Functionality (Extensions)

2009-10-24 Thread Corbin, James
Corbin, James wrote: Hi Sven, I'm running the wizard in a modal popup (YUI). One other thing that is happening is when I press the next button in the wizard that should take me to the next step, my dialog closes. I'm not sure what would cause the dialog to dismiss/close in this manner

RE: Wicket Wizard Functionality (Extensions)

2009-10-24 Thread Corbin, James
the code available at the moment. Regards Sven Corbin, James wrote: Hi Sven, I'm running the wizard in a modal popup (YUI). One other thing that is happening is when I press the next button in the wizard that should take me to the next step, my dialog closes. I'm not sure what would cause

Wicket Wizard Functionality (Extensions)

2009-10-23 Thread Corbin, James
I am writing a two step wizard using wicket's wizard implementation and having some issues. I am using Wicket 1.4.1. My first wizard step contains a RadioChoice with 3 options. I would like the Finish Button to be enabled on Wizard Step 1 if either the first or second radio choice is