Re: Processing large data while allowing request to return

2016-05-27 Thread Jered Myers
parallel and the main process to finish on time. I am still curious if there is a way to allow the request cycle to finish before starting the large process. I messed around with thread priorities, but is didn’t seem to matter. On 2016-05-27 16:39, Jered Myers wrote: > More details:> > When

Re: Processing large data while allowing request to return

2016-05-27 Thread Jered Myers
. On 2016-05-27 12:51, Jered Myers wrote: > I have a large background process that I need to execute when a user submits > a form. The background process can run while the user continues to use the > application. I am having trouble allowing the user to continue working. How > d

Processing large data while allowing request to return

2016-05-27 Thread Jered Myers
I have a large background process that I need to execute when a user submits a form. The background process can run while the user continues to use the application. I am having trouble allowing the user to continue working. How do I run this background process and allow the form submit to finish

Re: Wicket 6.22.0

2016-03-01 Thread Jered Myers
t 1:52 PM, Sven Meier wrote: > > Yes, please do. > > Sven > > On 01.03.2016 22:28, Jered Myers wrote: >> Okay great. Should I pull request for https://github.com/apache/wicket-site? >> <https://github.com/apache/wicket-site?> >> <https://github.

Re: Wicket 6.22.0

2016-03-01 Thread Jered Myers
mail-archives.us.apache.org/mod_mbox/www-announce/201602.mbox/%3CCAB63Y-d-1wB+kP6aGAJOEoMO4y1woFQG=A=ubqdqnis+m+4...@mail.gmail.com%3E > > Have fun > Sven > > > On 01.03.2016 19:19, Jered Myers wrote: >> Is Wicket 6.22.0 out? I thought I saw email stating it was, but th

Wicket 6.22.0

2016-03-01 Thread Jered Myers
Is Wicket 6.22.0 out? I thought I saw email stating it was, but the website is still showing 6.21.0. Jered - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.

Wicket Presentation

2016-01-26 Thread Jered Myers
Is anybody planning any Wicket presentations at ApacheCon North America in May? -- Jered

Re: Lightbox2 Integration

2014-07-18 Thread Jered Myers
: Thank you! Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Thu, Jul 17, 2014 at 7:05 PM, Jered Myers wrote: I added the pull request for lightbox2. lightbox2-examples didn't need to be updated. Jered On 07/17/2014 12:27 AM, Martin Grigorov wrote: Hi, D

Re: Lightbox2 Integration

2014-07-17 Thread Jered Myers
artin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Thu, Jul 17, 2014 at 12:14 AM, Jered Myers wrote: The WicketStuff version of the JavaScript file was out of date. After I fixed the JavaScript both the thumbnail and full image displayed. The close image icon still w

Re: Lightbox2 Integration

2014-07-16 Thread Jered Myers
to be done to fix WicketStuff is to copy down the resource files and to add the data-lightbox attribute to onComponentTag in LightboxLink. Jered On 07/14/2014 10:37 AM, Jered Myers wrote: I am having trouble getting the wicketstuff Lightbox2 plugin integration working. I am using the basic ex

Lightbox2 Integration

2014-07-14 Thread Jered Myers
super.onComponentTag(tag); tag.put("data-lightbox", getMarkupId()); } }.add(new Image("imageFile", res.getThumbnail(; -- Jered Myers

Re: Replace HTML Markup Dynamically

2014-03-27 Thread Jered Myers
Thank you Martin! I can confirm this work around is working well in my application! Jered Myers On 03/27/2014 03:19 AM, Martin Grigorov wrote: https://issues.apache.org/jira/browse/WICKET-5545 As a workaround you can replace com.test.help.HelpPage#onInitialize() with com.test.help.HelpPage

Replace HTML Markup Dynamically

2014-03-25 Thread Jered Myers
{ helpFileName += "#" + anchorModel.getObject(); } getRequestCycle().scheduleRequestHandlerAfterCurrent(new RedirectRequestHandler("docs/" + helpFileName)); } Thanks for your help! -- Jered Myers

Re: Wicket with X-editable

2014-03-14 Thread Jered Myers
Reinaldo Barreiro wrote: IMHO this should be very easy to implement/integrate with Wicket: judging from the documentation. I haven't used the library myself, so I might be missing some nuances/caveats... On Tue, Mar 11, 2014 at 12:03 AM, Jered Myers wrote: Has anybody tried to work with Wicke

Wicket with X-editable

2014-03-10 Thread Jered Myers
with the X-editable in-line editable fields. -- Jered Myers

Re: AutoCompleteTextField break in new wicket 6.10.0?

2013-08-27 Thread Jered Myers
. On 08/27/2013 07:53 AM, Jered Myers wrote: I added this case to JIRA with a quickstart. It is a critical bug for my company. https://issues.apache.org/jira/browse/WICKET-5332 Jered On 08/27/2013 06:39 AM, Sven Meier wrote: Hi Jan, autoComplete is a little delicate in the ordering of

Re: AutoCompleteTextField break in new wicket 6.10.0?

2013-08-27 Thread Jered Myers
I added this case to JIRA with a quickstart. It is a critical bug for my company. https://issues.apache.org/jira/browse/WICKET-5332 Jered On 08/27/2013 06:39 AM, Sven Meier wrote: Hi Jan, autoComplete is a little delicate in the ordering of javascript event registrations, so this might not

Button tag

2013-07-05 Thread Jered Myers
I am looking at switching my submit buttons over to buttons. Is this safe to do in Wicket (e.g. my forms will still submit correctly, submit components don't have a onComponent tag that requires an input element)? I am supporting IE7 along with modern browsers. -- Jered Myers

Re: AjaxChannel Queues

2013-06-20 Thread Jered Myers
013 07:48 PM, Jered Myers wrote: I am having a few challenges with the AjaxChannel queuing up and interfering with actions a user is making while in ajax requests are in queue. When my AbstractDefaultAjaxBehavior hits its respond method, it adds a JavaScript call to the target. Does that JavaScr

AjaxChannel Queues

2013-06-20 Thread Jered Myers
get target) { ... target.appendJavaScript("finishButtonWork(" + resultJSON + ");"); } -- Jered Myers

ModalWindow not visible in Safari

2013-06-14 Thread Jered Myers
. It seems that WICKET-4948 was solving the same problem. Is this a problem between versions of Safari where the window.scrollTop is different between Windows and Mac? I don't have a Mac to test. -- Jered Myers

Re: Wicket panel - call jQuery

2013-03-21 Thread Jered Myers
I am not positive, but your selector appears wrong to me. Try response.render( DomReadyHeaderItem.forScript( "$(\"#menu\").find(\".tab-row\").addClass(\"myClass\");", "someId" ) ); On 03/21/2013 07:50 AM, Ernesto Reinaldo Barreiro wrote: try with DomReadyHederItem to see if you get a differen

Re: Validator Question

2013-03-06 Thread Jered Myers
Assuming you are extending AbstractFormValidator, you can store the components when you construct the validator like so... public DependantTextFieldValidator(TextField textField1, TextField dependantTextField) { if (textField1 == null) { throw new IllegalArgumen

Re: 404 error in nested ModalWindow IE 7

2013-03-04 Thread Jered Myers
This problem is not replicating in Wicket 1.4.21. On 03/01/2013 09:36 AM, Jered Myers wrote: I added this problem to JIRA. https://issues.apache.org/jira/browse/WICKET-5071 On 03/01/2013 08:29 AM, Jered Myers wrote: The page is stateless, so it has the same value being set for

Re: 404 error in nested ModalWindow IE 7

2013-03-01 Thread Jered Myers
I added this problem to JIRA. https://issues.apache.org/jira/browse/WICKET-5071 On 03/01/2013 08:29 AM, Jered Myers wrote: The page is stateless, so it has the same value being set for settings.ie8_src and settings.src in getWindowOpenJavaScript(). It seems that only pages with

Re: 404 error in nested ModalWindow IE 7

2013-03-01 Thread Jered Myers
ound to test it. On Fri, Mar 1, 2013 at 12:43 AM, Jered Myers wrote: It appears that the request is different between IE7 and Chrome once it hits the Jetty server with the inner modal window. modal.js is calling window.location.replace in load with the same value no matter what browser I am using.

Re: 404 error in nested ModalWindow IE 7

2013-02-28 Thread Jered Myers
Please help if you can. On 02/26/2013 04:47 PM, Jered Myers wrote: I am attaching a Quickstart that replicates the problem. On 02/25/2013 09:48 AM, Jered Myers wrote: I put a break point in CompoundRequestMapper at line 149 (the mapRequest function). Here are the results of request.getURL.

Re: 404 error in nested ModalWindow IE 7

2013-02-25 Thread Jered Myers
/page?9 (nested ModalWindow) I will keep digging. Any help is appreciated! On 02/25/2013 09:17 AM, Jered Myers wrote: I do see this in my log if I turn on DEBUG in log4j: [08:43:03] DEBUG [org.apache.wicket.request.mapper.CompoundRequestMapper] - No compatible mapper found for URL 'page?6&#x

Re: 404 error in nested ModalWindow IE 7

2013-02-25 Thread Jered Myers
lling back to container to process this request I don't see that message when I run in Chrome. On 02/25/2013 09:13 AM, Jered Myers wrote: It looks like it was a bug fixed in a 1.5 release candidate ( https://issues.apache.org/jira/browse/WICKET-3982). The example in my link (http://www.wic

Re: 404 error in nested ModalWindow IE 7

2013-02-25 Thread Jered Myers
On 02/23/2013 04:53 AM, Martin Grigorov wrote: Hi, There was such issue before but as far as I remember it was fixed. Look in Jira. There is also a special code for IE7/8 in ModalWindow.java On Sat, Feb 23, 2013 at 2:40 AM, Jered Myers wrote: The same problem happens in IE 8. Using development

Re: 404 error in nested ModalWindow IE 7

2013-02-22 Thread Jered Myers
The same problem happens in IE 8. Using development mode (F12) in IE9+ to lower the browser version will not replicate the problem. On 02/22/2013 03:23 PM, Jered Myers wrote: Wicket 6.5 I am getting a 404 error in IE 7 when I open a ModalWindow in a ModalWindow. Both windows use page

404 error in nested ModalWindow IE 7

2013-02-22 Thread Jered Myers
page" and then "Open another modal dialog" @ http://www.wicket-library.com/wicket-examples/ajax/modal-window -- Jered Myers - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional comma

Chrome warning with CSSHeaderItem

2012-12-11 Thread Jered Myers
s my ResourceReference like so: @Override public void renderHead(Component component, IHeaderResponse response) { response.render(JavaScriptHeaderItem.forReference(MyResourceReference.getInstance())); } What can I do to get rid of this warning? -- Jered Myers

Re: How to call a Wicket Ajax click event

2012-12-06 Thread Jered Myers
k' then jQuery('#theSubmitLinkId').triggerHandler('click') should do it. Also check the docs of jQuery#trigger On Thu, Dec 6, 2012 at 1:53 AM, Jered Myers wrote: The link here is actually an AjaxSubmitLink and not an AjaxLink. I am trying to get back to the onSubmit on

Re: How to call a Wicket Ajax click event

2012-12-05 Thread Jered Myers
ng. Do I treat the trigger on an AjaxSubmitLink different from a regular AjaxLink? On 12/05/2012 03:28 PM, Jered Myers wrote: Wicket 6.3 How do I call a click event on an AjaxLink from via jQuery or JavaScript? I have an AjaxLink that I have added to the page and after I run some JavaSc

How to call a Wicket Ajax click event

2012-12-05 Thread Jered Myers
onclick attribute is no longer on my link and I am not sure how to call the events that Wicket has registered in the head. -- Jered Myers - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e

Currency Converter

2012-11-06 Thread Jered Myers
lue instanceof String ) { cents = Integer.parseInt( (String) value ); return getNumberFormat(locale).format((double) cents / 100.0); } return value.toString(); } } -- Jered Myers

Re: Navigate through Wicket 6 tree

2012-11-02 Thread Jered Myers
cture? You can walk up your domain tree to search the 'previous' one. All you have to do, is re-applying the ordering when you iterate over the children. Sven On 11/02/2012 08:08 PM, Jered Myers wrote: The domain objects do know the parent, but they do not know what order they exi

Re: Navigate through Wicket 6 tree

2012-11-02 Thread Jered Myers
o traverse the tree. Don't your domain objects of the tree know their parents? If not, you may be able to walk up the Wicket component tree to the parental tree item to get the parent domain object. What do you use this for? What's your usecase? Sven On 11/02/2012 05:07 PM, Jered Mye

Re: Navigate through Wicket 6 tree

2012-11-02 Thread Jered Myers
. Thanks for any help! On 11/02/2012 03:30 AM, Sven Meier wrote: Hi, when do you need this information? How did you do it in 1.5? Sven On 11/01/2012 10:34 PM, Jered Myers wrote: I am updating my trees from Wicket 1.5 to 6.2. I need to get the next node and previous node related to the node

Re: Upgrade Advice

2012-10-22 Thread Jered Myers
I like to do things in shorter increments with many small successes rather than a big huge effort with no success for possibly many days, depending on the size of your code, and then one big success at the end (but you'll probably still have some runtime only errors to tackle). Bill- On Fri,

Upgrade Advice

2012-10-19 Thread Jered Myers
I am working on migrating a large application from Wicket 1.4.18 to Wicket 6.x. Is it better to convert to 1.5 first and then to 6.x or to just go straight to 6.x? Thanks. Also, an early thanks to everybody who took the time to write the migration guides! Jered ---

Re: Custom XHTML tag

2012-07-13 Thread Jered Myers
This seems to be getting me where I want to go with the xhtml tag: http://sanityresort.blogspot.com/2011/08/creating-custom-wicket-tag-resolver.html On 07/13/2012 01:40 AM, Decebal Suiu wrote: Hi First, is it a good question. My solution use jqwicket tooltip and I touch both java and html files

Custom XHTML tag

2012-07-12 Thread Jered Myers
): [First Name]<*/wicket:tooltip/* key="firstNameTip"> Properties file: firstName=First Name firstNameTip=This is the first name Rendered it would look something like this: First Namesrc="blah" id="img323" title="This is the first name" /> Thanks for taking the time to read this! Jered Myers

Re: Cannot detect ModalWindow cancel

2012-02-01 Thread Jered Myers
Thanks for your help! I will look into this. On 02/01/2012 11:34 AM, Chris Colman wrote: In trying to solve your problem of determining how the user closed the form you might find the ModalX library in Wicketstuff useful. ModalX (Modal eXtensions) for Wicket (part of Wickestuff) provides a gen

Re: Shibboleth Integration

2012-01-17 Thread Jered Myers
and the page I was jumping to was not secured by Shibboleth directly. The attribute for eppn had to be grabbed after returning from the Shibboleth login page and before redirecting to the home page. The file that tells Shibboleth what to secure was in httpd.conf in /etc/apache2. On 01/16/20

Shibboleth Integration

2012-01-16 Thread Jered Myers
w the user that is logging in for my Wicket application and all of the login is completed on the Shibboleth identity providers login page. -- Jered Myers - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For addit

Re: Duplicate Markup Ids

2011-11-14 Thread Jered Myers
Thomerson http://wickettraining.com Need a CMS for Wicket? Use Brix! http://brixcms.org On Nov 14, 2011 7:18 PM, "Jered Myers" wrote: > I found the problem. It was not a Wicket bug as expected. Thanks for > taking the time to look at this anyway. > > On 11/14/2011 03:36

Re: Duplicate Markup Ids

2011-11-14 Thread Jered Myers
I found the problem. It was not a Wicket bug as expected. Thanks for taking the time to look at this anyway. On 11/14/2011 03:36 PM, Jered Myers wrote: I forgot to post Wicket version 1.4.18 On 11/14/2011 02:07 PM, Jered Myers wrote: The HTML markup is always , so I think the answer is no

Re: Duplicate Markup Ids

2011-11-14 Thread Jered Myers
I forgot to post Wicket version 1.4.18 On 11/14/2011 02:07 PM, Jered Myers wrote: The HTML markup is always , so I think the answer is no. I end up with a markup id like "headerLabel8f". On 11/14/2011 12:54 PM, Sven Meier wrote: Do you have markup ids pre-defined in your html mar

Re: Duplicate Markup Ids

2011-11-14 Thread Jered Myers
The HTML markup is always , so I think the answer is no. I end up with a markup id like "headerLabel8f". On 11/14/2011 12:54 PM, Sven Meier wrote: Do you have markup ids pre-defined in your html markup? Sven On 11/14/2011 09:39 PM, Jered Myers wrote: I am getting components with

Duplicate Markup Ids

2011-11-14 Thread Jered Myers
w ListView("repeater", myRowArrrayListModel) { protected void populateItem(ListItem item) { // Here is where I see the duplicate markup ids log.debug(item.getModelObject().getLabelComponent().getMarkupId()); item.add(item.getModelObject().getLabelComp

Re: PageMap Reuse

2011-09-08 Thread Jered Myers
ipulate the window name. On 9/8/2011 3:16 PM, Dan Retzlaff wrote: In step #5, what page map name do you use in your popup settings? Does it match the window.name global variable in that tab? (Use a browser debugger to check.) If yes, that should do the trick by my reading of the code. On Thu, Se

Re: PageMap Reuse

2011-09-08 Thread Jered Myers
It appears the initial window name is "wicket-wicket:default". The other tab windows match the PageMap name. Thanks for the help! I will explore a way to manipulate the window name. On 9/8/2011 3:16 PM, Dan Retzlaff wrote: In step #5, what page map name do you use in your popup settings? Do

PageMap Reuse

2011-09-08 Thread Jered Myers
I'm using Wicket 1.4.18. I'm having trouble moving between browser tabs in my application as I am opening a duplicate tab. Here is an example: 1. The user starts on browser tab A via a mounted page (e.g. www.mysite.com/MyApp/PageA) 2. The user clicks on a bookmarkable link (with popup settin

Re: Label tag wicket:for question

2011-08-12 Thread Jered Myers
Thanks that worked perfectly! On 08/12/2011 01:28 PM, Igor Vaynberg wrote: this has been changed in later commits, use Name instead of -igor On Fri, Aug 12, 2011 at 1:05 PM, Jered Myers wrote: I am using a label tag with wicket:for (Wicket 1.4.18) and the text of the label is not

Label tag wicket:for question

2011-08-12 Thread Jered Myers
I am using a label tag with wicket:for (Wicket 1.4.18) and the text of the label is not replacing as I expect. I am using a label tag in my HTML like so: Name In my Java code: RequiredTextField firstName = new RequiredTextField("firstName") firstName.setOutputMarkupId(true)); firstName.se

Re: Graceful Session Expiry

2011-06-09 Thread Jered Myers
I have done this in the past (not in Wicket). The problem I ran into was JavaScript alerts stopping the JavaScript timer thread until the user closed the alert box. I used a modal window for my warning message to prevent that problem. On 6/9/2011 2:25 AM, Martin Grigorov wrote: Yep, this wi

Re: JavaScript form submit

2011-05-26 Thread Jered Myers
uot;Origination"); ... On 5/26/2011 4:07 PM, Jered Myers wrote: I am having trouble figuring out how to submit a form that is dynamically created via JavaScript. The page uses JavaScript to create a list of commands inside a form element like so: I need to be able to complet

JavaScript form submit

2011-05-26 Thread Jered Myers
nt to do this inside a Panel, so I don't want to post the form to another page if I don't have to do so. Thanks for any help! -- Jered Myers - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additio

Re: BookmarkablePageLink with PopupSettings

2011-05-24 Thread Jered Myers
Setting a pageMapName in PopupSettings fixed this problem. On 5/24/2011 9:16 AM, Jered Myers wrote: I looks like this problem is not replicating in a Quickstart. I thought it might be an expected behavior of some sort as removing the PopupSettings fixed my problem. On 5/23/2011 10:47 PM

Re: BookmarkablePageLink with PopupSettings

2011-05-24 Thread Jered Myers
, May 23, 2011 at 11:48 PM, Jered Myers wrote: I am attempting to open a new browser tab to a bookmarkable page. The constructor of my page is being called twice. Is there a way I can prevent this from happening? When I remove the PopupSettings the constructor is only called once, but the page

BookmarkablePageLink with PopupSettings

2011-05-23 Thread Jered Myers
I am attempting to open a new browser tab to a bookmarkable page. The constructor of my page is being called twice. Is there a way I can prevent this from happening? When I remove the PopupSettings the constructor is only called once, but the page does not open in a new tab. Here is an exam

Re: wicket datatable to excel

2011-04-08 Thread Jered Myers
I haven't used Apache POI, so that may be the way to go. For my exports I use JExcel (http://jexcelapi.sourceforge.net/resources/faq/). With JExcel you will need to loop through the cells in you data table and create the Excel cells to match. There is example code in the FAQ I linked. On 4/

Re: Trouble with DropDownChoice

2011-03-25 Thread Jered Myers
You can create a simple PropertyModel to hold the value your form is trying to set. Here is an example: public Pageextends WebPage { private List letters = Arrays.asList(new String[] {"A","B","C" })); public String selected ="B"; public Page() { Form form =new Form("form

setObject with invisible panel

2011-03-25 Thread Jered Myers
ulate the style attribute. Jered Myers - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Color Picker

2011-03-22 Thread Jered Myers
icket component. Jered Myers - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Submit Form from AjaxFormChoiceComponentUpdatingBehavior

2010-12-20 Thread Jered Myers
Thanks, that worked! On 12/20/2010 2:36 PM, Jeremy Thomerson wrote: Probably something like this should work: target.appendJavascript("Wicket.$('" + getForm().getMarkupId() + "').submit()"); On Mon, Dec 20, 2010 at 4:34 PM, Jered Myers wrote: Does anybody kno

Submit Form from AjaxFormChoiceComponentUpdatingBehavior

2010-12-20 Thread Jered Myers
tio("two", new Model(2)); group.add(mode2); Radio mode3 = new Ratio("three", new Model(3)); group.add(mode3); Jered Myers - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: wickert:id changes to attribute

2010-10-06 Thread Jered Myers
formatting, or compiler errors On Oct 4, 2010 7:49 PM, "Jered Myers" wrote: My markup look... -- Jered Myers 509-252-3550 x 109 Programmer/Analyst Maplewood Software - To unsubscribe, e-mail: users-unsubscr...

wickert:id changes to attribute

2010-10-04 Thread Jered Myers
My markup looks like this: ... stuff ... When I render the code and swap in another panel via canvasPanel.replaceWith(newPanel);, the page source looks like this: ... new panel markup ... Any ideas on why this would happen? I looked through my markup and it looks correct. I have seen

Wicket Rich Text Editor with YUI 2

2010-09-30 Thread Jered Myers
control in a "Wicket" manner (e.g. see DatePicker), so that it can be used as easily as Wicket's TextArea. The job, with the full details, is posted on RentACoder at http://www.vworker.com/RentACoder/misc/BidRequests/ShowBidRequest.asp?lngBidRequestId=1507539. -- Jered Myers Map

Where to post wicket jobs

2010-09-30 Thread Jered Myers
I am looking for a good place to post small jobs (e.g. creating custom UI components) using Wicket like RentACoder. Can someone please point me to a good site or the proper mailing list for this. Thanks! Jered - To unsubsc

Re: Nesting Links

2010-04-12 Thread Jered Myers
{e.cancelBubble = true;}"; tag.put("onclick", stopBubble + script); } Jered Myers writes: I need to be able to nest links and have the link clicked on trigger, but not its parent. I am not sure how to do this with a regular Link. Right now, I believe that I have a problem wi

Nesting Links

2010-04-12 Thread Jered Myers
insert to edit final Link parent = new Link("parent"){ protected void onClick() { open insert panel }; } add(parent); final Link child= new Link("child"){ protected void onClick() { open edit panel }; } parent.add(

Re: Clear feedback panel

2010-03-05 Thread Jered Myers
You can try grabbing the FeebackMessages via Session.get().getFeedbackMessages() or Session.get().getFeedbackMessages().messages(IFeedbackMessageFilter) and then call FeedbackMessage.markRendered(). On 3/5/2010 1:34 PM, Anna Simbirtsev wrote: It does not work for some reason. Session.get().c

Re: Cannot get default invisible TextField's ModelObject ?

2010-01-20 Thread Jered Myers
What do you mean by "cannot get their values"? I am wondering if the model's value is not showing in the TextField when it become visible or if the model's value is not getting set based on what you type into the TextField. If your problem is that the value you type into the TextField is not

Popup New Window After Submit

2010-01-18 Thread Jered Myers
alueOf(sum)); // I want the response in a new window setResponse(new ReportPage(params)); } -- Jered Myers Programmer/Project Analyst jer...@maplewoodsoftware.com <mailto:jer...@maplewoodsoftware.com> Maplewood Software 508 W. 6th Ave, Suite 900 Spokane, WA 99204 (509) 2

Javascript Resources Loading Slow

2009-12-18 Thread Jered Myers
I just converted my code from Wicket 1.4m2 to 1.4.4 and am see performance problems with resource load times. For example, when I load a page that has a LinkTree in it, the browser takes a long time (20 - 30 seconds) to load "http://localhost:8080/MyProject/resources/org.apache.wicket.markup.h