onError

2015-12-17 Thread Lois GreeneHernandez
Hello All, So I've determined that the reason that my onsubmit appears not to work is because one of my components is throwing an error. I put an onError on my submit button and a callOnError on my form. I'm not sure which is causing the problem. Also, while I've looked at threads, I'm not

RE: onsubmit not firing when you navigate away from tab and back

2015-12-14 Thread Lois GreeneHernandez
quickstart would help to identify the problem. Are you running your application in DEVELOPMENT mode? Then you can check for the errors in the Ajax debug console (it flashes red). Regards Sven On 14.12.2015 16:21, Lois GreeneHernandez wrote: > Hi All, > > I have a page that has several

onsubmit not firing when you navigate away from tab and back

2015-12-14 Thread Lois GreeneHernandez
Hi All, I have a page that has several tabs (tab panels) on it. The landing tab has a report that is filterable. It works fine when you're on the landing tab. If you navigate away from that tab and navigate back, it no longer works. I've determined that for some reason the ajax onsubmit even

Jsession Test Question

2015-12-10 Thread Lois GreeneHernandez
Hi All, Is it possible to write a unit test or a pojo that tests an request url for the presence of a jsessionid? My application Is java/wicket. Our test system is testNG and wicket tester. Thanks Lois

RE: jsession id in url

2015-12-04 Thread Lois GreeneHernandez
g and Consulting https://twitter.com/mtgrigorov On Fri, Dec 4, 2015 at 8:02 PM, Lois GreeneHernandez < lgreenehernan...@knoa.com> wrote: > Actually we're using glassfish 4 and it's a good question, but I don't > know if we configured it to not use jsessionid? I'll res

RE: jsession id in url

2015-12-04 Thread Lois GreeneHernandez
5 12:43 PM To: users@wicket.apache.org Subject: Re: jsession id in url Hi, did you configure Tomcat to not use jsessionid? http://stackoverflow.com/questions/962729/is-it-possible-to-disable-jsessionid-in-tomcat-servlet Regards Sven On 04.12.2015 17:03, Lois GreeneHernandez wrote: > Hi All

jsession id in url

2015-12-04 Thread Lois GreeneHernandez
Hi All, I was tasked with modifying a wicket6/glassfish4 application so that the session id changes as soon as a user logs in. This is to avoid the problem of Session Fixation. I used the replaceSession() method (from the wicket Session class), which does a destroy(); and a bind();. replaceS

multiline Table Headers

2015-10-16 Thread Lois GreeneHernandez
Is it possible to have multi line data table headings? Specifically I'd like to do something like this: | Common Heading | columnA | columnB | columnC | Please advise. Thanks Lois

Select2Choice component issues

2015-10-14 Thread Lois GreeneHernandez
I need to slightly modify the behavior of a wicket select2Choice dropdown component. When you've selected a choice if the choice is longer than the window, you see your choice truncated with elipses. I'm wondering if its possible to do one of the following: 1) Make the choice scrollable 2) Add a

select2choice and scrolling

2015-10-14 Thread Lois GreeneHernandez
I have a select2choice component and the select value is often quite large. I'd like to find a way to make that scrollable or visible in some way. Any advice would be greatly appreciated. Thanks Lois

Wicked Charts

2015-10-06 Thread Lois GreeneHernandez
Hi there, I'm using Wicket Charts. Does anyone know how to refresh an Options object or redraw it? I have a filter on that page that affects a datatable and a chart. I want both components to change when I click submit. I can't refresh the options object as it's not a wicket component. I d

RE: Cannot set select2choice component in wicket tester

2015-10-01 Thread Lois GreeneHernandez
WicketTester tests you just need to submit a value for it. FormTester ft = tester.newFormTester("theForm"); ft.setValue("path:to:select2Choice", "selectedOptionValue"); ft.submit(); Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Thu

Cannot set select2choice component in wicket tester

2015-09-30 Thread Lois GreeneHernandez
Hello All, My form has a select2choice component. I cannot seem to set this field in my testing unit test. Any advice on how to deal with this would be greatly appreciated. Thanks Lois

Fields in modal window not resetting

2015-07-07 Thread Lois GreeneHernandez
Hi All, I have a modal window with two fields and a confirm and cancel button. The fields do not reset after submitting and the data from the previous use is still there. I have tried several things. 1) Refreshing the form on submit 2) form.clearInput(); (also on submit) 3)

RE: Graphing Framework for Wicket

2015-06-01 Thread Lois GreeneHernandez
Wicket Hi, Please give us more details. Do you mean graphics or graphs? Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Mon, Jun 1, 2015 at 4:27 PM, Lois GreeneHernandez < lgreenehernan...@knoa.com> wrote: > Hi All, > > I need some recommendation

Graphing Framework for Wicket

2015-06-01 Thread Lois GreeneHernandez
Hi All, I need some recommendations on a graphing framework for wicket. Thanks Lois

RE: AttributeAppender

2015-04-17 Thread Lois GreeneHernandez
.java#L324 Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Fri, Apr 17, 2015 at 11:07 PM, Lois GreeneHernandez < lgreenehernan...@knoa.com> wrote: > Is it possible to add an attributeappender for a label within a > tabbedpanel? If so, how can

AttributeAppender

2015-04-17 Thread Lois GreeneHernandez
Is it possible to add an attributeappender for a label within a tabbedpanel? If so, how can I do this. Thanks Lois

Alternative to Tabbed Panel

2015-04-06 Thread Lois GreeneHernandez
Hi All, I have a form that uses tabbed panels (extended from wicket panels). The problem is that the data models for each tab are not initialized unless that tab is clicked on. I'm looking for a work around for this. Basically I need a wicket component that allows me to hide and show logical