floating div?

2010-08-30 Thread Kurt Heston
I have a really long table with qty values in one of the columns. Instead of having a total at the bottom of the page (and requiring the user to scroll to see it), I'd like to float a div in the bottom right that I can update on the fly as the user changes qty values. The wicketstuff dojo

Re: floating div?

2010-08-30 Thread Kurt Heston
the callback is made. Still at it. Suggestions? On 08/30/2010 10:51 AM, Kurt Heston wrote: I have a really long table with qty values in one of the columns. Instead of having a total at the bottom of the page (and requiring the user to scroll to see it), I'd like to float a div in the bottom right

Re: floating div?

2010-08-30 Thread Kurt Heston
I was over-engineering this. The answer was in wicket-ajax-debug.js: style=position:fixed; right: 100px; bottom: 100px;... No ajax required. On 08/30/2010 05:34 PM, Kurt Heston wrote: The following seems to work until the page refreshes and scrolls to the top

Re: Ajax not firing onSubmit after back-button press

2009-12-18 Thread Kurt Heston
My Ajax calls are getting swallowed somewhere. Is there someplace I can set a break-point to find out where it's dying? On 12/17/2009 11:28 AM, Kurt Heston wrote: I've read alot about ajax and the back button in the forums and on the web, but what I'm seeing looks to be a different problem

Re: Ajax not firing onSubmit after back-button press

2009-12-18 Thread Kurt Heston
#getCallbackScript(boolean) Just a guess, and I am likely to be wrong, but I though I'd throw it out there. Craig _ From: Kurt Heston [mailto:khes...@hestonsystems.com] To: users@wicket.apache.org Sent: Fri, 18 Dec 2009 19:45:36 -0500 Subject: Re: Ajax not firing onSubmit after back-button

Ajax not firing onSubmit after back-button press

2009-12-17 Thread Kurt Heston
I've read alot about ajax and the back button in the forums and on the web, but what I'm seeing looks to be a different problem in v1.4.3. I don't think it has anything to do with WICKET-271. I have some ajax in a panel that works perfectly after a page refresh but not after pressing the back

Re: (seemingly) session-related performance issue

2009-12-16 Thread Kurt Heston
/12/16 Kurt Heston khes...@hestonsystems.com: Tonight, I moved from v1.3.5 to v1.4.4. I'm up and running after changing all of my getModel statements, but an old performance problem has shown up again. Back when I moved to 1.3.x, pages started loading really slowly, especially ones

Re: setConvertedInput - one form component, two fields in the model?

2009-04-21 Thread Kurt Heston
probably want to pass in the encapsulating Form object too, so you can add a FormValidator to ensure end start. jk On Mon, Apr 20, 2009 at 09:38:46PM -0700, Kurt Heston wrote: I guess I also need to ask an even simpler question: can I manage two fields in the same IModel within a single form

setConvertedInput

2009-04-20 Thread Kurt Heston
I'm building a StartAndEndDateTime form component based on Eelco's DateTimeField. It is essentially the same as his with the time fields repeated. The goal is to get my new custom component to update two date fields in the parent form's model. Here is what the end of my convertInput()

Re: warn user a field has changed

2009-03-08 Thread Kurt Heston
cured it. It's working again. Kurt Heston wrote: The problem appears to be related to the code I used to replace the old onAttach code. It was: protected void onAttach() { super.onAttach(); if (firstTimeThru) { final WebMarkupContainer c

warn user a field has changed

2009-03-07 Thread Kurt Heston
I haven't been able to make this work since my upgrade from 1.2.x to 1.3.5: http://javathoughts.capesugarbird.com/2007/11/warning-on-page-exit-for-wicket-12x.html It was pretty slick. I was able to warn the user that she/he had changed a field without saving when trying to navigate away. Is

Re: warn user a field has changed

2009-03-07 Thread Kurt Heston
Not yet. Still trying to figure it out. Just wanted to make sure I wasn't overlooking something in the manual that works just as as well or better. Igor Vaynberg wrote: do you know why it doesnt work? -igor On Sat, Mar 7, 2009 at 12:26 PM, Kurt Heston khes...@hestonsystems.com wrote

Re: warn user a field has changed

2009-03-07 Thread Kurt Heston
this at the moment. Not sure yet what's going on. Kurt Heston wrote: Not yet. Still trying to figure it out. Just wanted to make sure I wasn't overlooking something in the manual that works just as as well or better. Igor Vaynberg wrote: do you know why it doesnt work? -igor On Sat, Mar 7, 2009 at 12

MultiFileUploadField - uploads collection always empty

2008-06-17 Thread Kurt Heston
I took the code verbatim from the examples site and can't ever get anything from the uploads collection. The UI components appear to work well in the browser and no errors are thrown, but when I try to iterate the collection upon hitting the Upload button, there's nothing there. My