Wicket migration 1.4 to 1.5.13 issue with WebmarkupContainer /WebComponent/ByteArrayResource

2015-12-18 Thread durairaj t
Hi Team - How to change the below wicket version1.4 code to 1.5.13 , I tried with WebComponent(String ,IModel model), it doesn't work. When I'm using the below code its placing the pdf content in the form component but not in the WebmarkupContainer. *getRequestCycle().scheduleRequestHandlerAfter

Fwd: Wicket migration 1.4 to 1.5.13 issue with WebmarkupContainer /WebComponent/ByteArrayResource

2015-12-21 Thread durairaj t
Can any one help on this issue? -- Forwarded message -- From: durairaj t Date: Fri, Dec 18, 2015 at 4:29 PM Subject: Wicket migration 1.4 to 1.5.13 issue with WebmarkupContainer /WebComponent/ByteArrayResource To: users@wicket.apache.org Hi Team - How to change the below

In Wicket 1.5, How to get a modified value from a Panel to Page?

2016-02-15 Thread durairaj t
I'm trying to get a modified Panel object in a Page, I tried with "TestPage.this.getPageReference().getPage();" and "TestPanel.this" both are not working. I can use Session but have to get more than a modified values. Any help? Thanks.

Re: In Wicket 1.5, How to get a modified value from a Panel to Page?

2016-02-15 Thread durairaj t
in Grigorov wrote: > Hi, > > It is not very clear what you are trying to achieve. > Please re-phrase. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Mon, Feb 15, 2016 at 8:54 PM, durairaj t > wrote: > > > I&

ListMultipleChoice - How to wrap the text in the list.

2016-03-29 Thread durairaj t
Is it possible to Wrap text in the wicket ListMultipleChoice? I tried through CSS and SimpleAttributeModifier (I used: "word-wrap"and "overflow-x:scroll" ), both are not working. Any help? Thanks.

Re: ListMultipleChoice - How to wrap the text in the list.

2016-03-29 Thread durairaj t
You can > override > org.apache.wicket.markup.html.form.AbstractChoice#appendOptionHtml() > and cut long text at the server side. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Tue, Mar 29, 2016 at 4:28 PM, durairaj t > wrote:

Panel.this always giving previous version of the object but not the modified one.

2016-04-11 Thread durairaj t
Hi, I'm using "*new* ModalWindow.WindowClosedCallback(){}" to update the modified value in a text field box by invoking the * target.add(* *MyTextFieldPanel.this**)*, but it is always giving the old values. I'm seeing only old values in *MyTextFieldPanel.this. * Code snippet for a clear pict

Re: Panel.this always giving previous version of the object but not the modified one.

2016-04-11 Thread durairaj t
*); onWindowClose(target); } }); On Mon, Apr 11, 2016 at 4:42 PM, durairaj t wrote: > Hi, > > > > I'm using "*new* ModalWindow.WindowClosedCallback(){}" to update the > modified value in a text field box by invoking the * target.add(* > *MyTextFieldPanel.this**)*, bu

Re: Panel.this always giving previous version of the object but not the modified one.

2016-04-15 Thread durairaj t
; Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Mon, Apr 11, 2016 at 10:42 PM, durairaj t > wrote: > > > Hi, > > > > > > > > I'm using "*new* ModalWindow.WindowClosedCallback(){}" to upda

Re: Panel.this always giving previous version of the object but not the modified one.

2016-04-22 Thread durairaj t
ents which > should be repainted. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Fri, Apr 15, 2016 at 4:01 PM, durairaj t > wrote: > > > "openerPage.getPageReference()" is working with the pages, not in the &

Re: Panel.this always giving previous version of the object but not the modified one.

2016-04-25 Thread durairaj t
} 49. } 50. 51. } On Fri, Apr 22, 2016 at 4:53 PM, Martin Grigorov wrote: > Please use some pastebin service. > It is hard to read and follow this code. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Fri, Ap

Re: Panel.this always giving previous version of the object but not the modified one.

2016-04-26 Thread durairaj t
Page, Broadcast.BREADTH, new > GridValueChangeEvent(target, selectedRow)); > > Then any component inside 'openerPage' will receive this event and can read > and store the selected row from it. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgri

wicket/bookmarkable

2016-04-29 Thread durairaj t
I’m seeing different URL’s while navigating to the different pages. Whenever wicket writes “wicket/bookmarkable” in the URL everything looks good in a page, but sometimes it gives (http://hostname/wic/app/r1?2) without “bookmarkable” and it removes all the images from the page. “mountPage(",")” i

Re: wicket/bookmarkable

2016-05-02 Thread durairaj t
OK. I will check my code. Thank you. On Fri, Apr 29, 2016 at 7:55 PM, Martin Grigorov wrote: > Hi, > > On Apr 29, 2016 11:35 PM, "durairaj t" wrote: > > > > I’m seeing different URL’s while navigating to the different pages. > > Whenever wicket wr

AutoCompleteTextField printing values in bullet points, not as it is appearing in the examples7.x

2016-05-16 Thread durairaj t
Hi, The "AutoCompleteTextField" is printing the suggested values in the bullet point,but not showing as it is appearing in the examples7x. Expected Result: Wicket exapmles URL: http://examples7x.wicket.apache.org/ajax/autocomplete?0&q=i Actual result: - China - Chile - Canada - C

Re: AutoCompleteTextField printing values in bullet points, not as it is appearing in the examples7.x

2016-05-17 Thread durairaj t
Sorry, CSS was not formed well in my HTML, it is fixed and working good now. Thanks. On Mon, May 16, 2016 at 6:00 PM, durairaj t wrote: > Hi, > > The "AutoCompleteTextField" is printing the suggested values in the > bullet point,but not showing as it is appea

wicket 1.4.12 https issue - Is it a wicket version compatibility issue with the other software's?

2016-06-14 Thread durairaj t
I'm migrating wicket1.4.12 to 1.5.x, but wicket 1.4.12 is still running in the production. Users facing IE 11 browser crash when they are working in this application. It is happening in https but not in http. Is it a wicket version compatibility issue with the other new versions of the software

Re: wicket 1.4.12 https issue - Is it a wicket version compatibility issue with the other software's?

2016-06-15 Thread durairaj t
.3.0 if you can! > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Wed, Jun 15, 2016 at 12:36 AM, durairaj t > wrote: > > > I'm migrating wicket1.4.12 to 1.5.x, but wicket 1.4.12 is still running > in > > the product

IOnChangeListener#onSelectionChanged() is not being called in 1.5

2016-06-24 Thread durairaj t
"onSelectionChanged()" is not being called in 1.5. It's working in 1.4. Do I need to do any modification in my AppRadioChoice Class? I have copied the main code snippet below, 1. AppRadioChoice deleteRadio = new AppRadioChoice(" rdbutton",RadioChoiceEnum.YESNO){ 2. *public*

IResourceListener#onResourceRequested() is not being called in IE11.

2016-07-21 Thread durairaj t
IResourceListener#onResourceRequested() is not being called in IE11. but it is working with Google Chrome. I referred the below URL for the PDF file generation. My requirement is same as it is in the below URL. URL: https://github.com/reiern70/antilia-bits/blob/master/content-iframe/src/main/java

Re: IResourceListener#onResourceRequested() is not being called in IE11.

2016-07-21 Thread durairaj t
It is Resolved. It was a components Hierarchy issue. Thanks! On Thu, Jul 21, 2016 at 12:49 PM, durairaj t wrote: > IResourceListener#onResourceRequested() is not being called in IE11. but > it is working with Google Chrome. > > I referred the below URL for the PDF file ge

How to get the browser height and width in wicket 1.5 ?

2016-07-25 Thread durairaj t
The below code is giving *-1* for height and width, ClientProperties properties = ((WebClientInfo)Session.get().getClientInfo()).getProperties(); int height = properties.getBrowserHeight(); System.out.println("height:"+ height ); *height : -1* Any help?

Re: How to get the browser height and width in wicket 1.5 ?

2016-07-25 Thread durairaj t
r application's init method. > Take a look at *ClientProperties.class* for the complete javadoc. > > Regards, > Yaya > > 2016-07-25 15:26 GMT+02:00 durairaj t : > > > The below code is giving *-1* for height and width, > > > > ClientProperties p

Re: How to get the browser height and width in wicket 1.5 ?

2016-07-25 Thread durairaj t
> > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Mon, Jul 25, 2016 at 4:41 PM, durairaj t > wrote: > > > It is already added in my app.java. > > > > isJavaEnabled() - returns false; I set it true, but still it is not

Re: How to get the browser height and width in wicket 1.5 ?

2016-07-25 Thread durairaj t
/mtgrigorov > > On Mon, Jul 25, 2016 at 4:57 PM, durairaj t > wrote: > > > There is no intermediate page. I did not see anything in between the > > current page to the targeted page. > > > > When I'm running my application in wicket 1.4.x with the below

ModalWindow.PageCreator()#createPage() is loading login page unexpectedly sometimes

2016-08-31 Thread durairaj t
I'm migrating to wicket 6.23, createPage() is working as expected in many modules, but not in the below scenario. There is a search modal window in the application, which is used to search data and keep the entire Page in session to retrieve the data back from the session (for the Back button fu

Re: ModalWindow.PageCreator()#createPage() is loading login page unexpectedly sometimes

2016-08-31 Thread durairaj t
ssionPingTime); } }catch(c){showScriptError(c, 'resetSessionTimer');} } On Wed, Aug 31, 2016 at 10:05 AM, Francois Meillet < francois.meil...@gmail.com> wrote: > Hi, > > What is the session-timeout ? > Can you show the html page header ? and any java code that modify i

Re: ModalWindow.PageCreator()#createPage() is loading login page unexpectedly sometimes

2016-08-31 Thread durairaj t
s why Login > Page is loaded. > > Hope this helps > > François > > > > > Le 31 août 2016 à 16:21, durairaj t a écrit : > > > > Thank you for your quick response. > > > > *Session:* 30 minutes.

Re: ModalWindow.PageCreator()#createPage() is loading login page unexpectedly sometimes

2016-08-31 Thread durairaj t
then put breakpoints in > RestartReponseAtInterceptPageException constructors. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Wed, Aug 31, 2016 at 5:06 PM, durairaj t > wrote: > > > I got the same issue in Wicket 1.5, s

Re: ModalWindow.PageCreator()#createPage() is loading login page unexpectedly sometimes

2016-09-08 Thread durairaj t
m alive"); } }); How to extend the page life time? On Wed, Aug 31, 2016 at 3:29 PM, durairaj t wrote: > Thank you martin! Let me try this. > > > > > On Wed, Aug 31, 2016 at 2:27 PM, Martin Grigorov > wrote: > >> Hi, >> >> Put a breakpoint at

Re: ModalWindow.PageCreator()#createPage() is loading login page unexpectedly sometimes

2016-09-08 Thread durairaj t
MemorySizeEvictionStrategy (null ) ); return new HttpSessionDataStore(getPageManagerContext(), new PageNumberEvictionStrategy(10)); } }); On Thu, Sep 8, 2016 at 9:20 AM, durairaj t wrote: > Hi Martin, > > I got the exact error message while debugging in eclipse; &

Re: ModalWindow.PageCreator()#createPage() is loading login page unexpectedly sometimes

2016-09-12 Thread durairaj t
x27;t know whether this is the right solution for the issue. IDataStore dataStore=new HttpSessionDataStore(pageManagerContext,new PageNumberEvictionStrategy(500)); Any Help? On Thu, Sep 8, 2016 at 3:12 PM, Martin Grigorov wrote: > Hi, > > > On Thu, Sep 8, 2016 at 8:38 PM, durairaj

Re: ModalWindow.PageCreator()#createPage() is loading login page unexpectedly sometimes

2016-09-12 Thread durairaj t
Thank you martin. let me upgrade to wicket 7.x. it may resolve. On Mon, Sep 12, 2016 at 11:33 AM, Martin Grigorov wrote: > On Mon, Sep 12, 2016 at 5:26 PM, durairaj t > wrote: > > > Hi Martin, > > > > DefaultPageStore#storePage(SerializedPage page) is holding onl

Wicket 8.0

2016-09-15 Thread durairaj t
Do I need to wait for the stable version ? Can I migrate application to wicket 8?

Re: Wicket 8.0

2016-09-16 Thread durairaj t
Thank You! Let me wait for the final release. On Fri, Sep 16, 2016 at 3:16 AM, Martin Grigorov wrote: > Hi, > > I also upgraded my application that I use for trainings and our main > application at my job. > Both work without any issues, but the latter is just to be able to test > Wicket 8.x, i

Wicket-Bootstrap

2016-09-20 Thread durairaj t
Unable to access the URL: https://wb.agilecoders.de/app. I'm getting "Your Connection is not private". Is there any other URL? Thanks!

Re: Wicket-Bootstrap

2016-09-20 Thread durairaj t
this old demo site. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Tue, Sep 20, 2016 at 7:18 PM, durairaj t > wrote: > > > Unable to access the URL: https://wb.agilecoders.de/app. > > > > I'm getting

AjaxCallListener

2016-09-26 Thread durairaj t
How to replace the "new CancelEventIfNoAjaxDecorator();" in wicket 7 AjaxCallListener? Any help?

Re: AjaxCallListener

2016-09-26 Thread durairaj t
elEventIfNoAjaxDecorator-td4652609.html > > Hope this helps. > > kind regards > > Tobias > > > Am 26.09.2016 um 22:13 schrieb durairaj t : > > > > How to replace the "new CancelEventIfNoAjaxDecorator();" in wicket 7 > > AjaxCallListener? > > > > Any help? >

Re: AjaxCallListener

2016-09-27 Thread durairaj t
; Hope this helps. > > kind regards > > Tobias > > > Am 26.09.2016 um 22:13 schrieb durairaj t : > > > > How to replace the "new CancelEventIfNoAjaxDecorator();" in wicket 7 > > AjaxCallListener? > > > > Any help? >

Re: AjaxCallListener

2016-09-27 Thread durairaj t
ated onSuccess handler script */ CharSequence decorateOnSuccessScript(Component component, CharSequence script); On Tue, Sep 27, 2016 at 8:54 AM, durairaj t wrote: > Hi, > > I'm replacing "decorateScript(Component arg0,CharSequence script)" with > "AjaxRequestAttrib

Re: AjaxCallListener

2016-09-27 Thread durairaj t
tps://twitter.com/mtgrigorov > > On Tue, Sep 27, 2016 at 4:11 PM, durairaj t > wrote: > > > Based on the wicket 1.5 comments in IAjaxCallDecorator.java, > > I think, I may need to use "beforeSend" for "decorateScript" and > > "onSuccess" fo

"com.inmethod.grid.treegrid" for advanced grid with tree - is it updated for wicket 7?

2016-09-29 Thread durairaj t
Do I need to remove the entire package (com.inmethod.grid.treegrid - auther: Matej Knoop) and should use the Wicket 7 feature (Advanced tabular tree)? I have used this package in many places in my application with the older versions of wicket. Any help?

Re: "com.inmethod.grid.treegrid" for advanced grid with tree - is it updated for wicket 7?

2016-09-30 Thread durairaj t
g and Consulting > https://twitter.com/mtgrigorov > > On Thu, Sep 29, 2016 at 9:33 PM, durairaj t > wrote: > > >Do I need to remove the entire package (com.inmethod.grid.treegrid - > > auther: Matej Knoop) and should use the Wicket 7 feature (Advanced > > tabu

Re: "com.inmethod.grid.treegrid" for advanced grid with tree - is it updated for wicket 7?

2016-09-30 Thread durairaj t
AbstractTree; import org.apache.wicket.extensions.markup.html.tree.DefaultTreeState; import org.apache.wicket.extensions.markup.html.tree.ITreeState; import org.apache.wicket.extensions.markup.html.tree.ITreeStateListener; On Fri, Sep 30, 2016 at 9:19 AM, durairaj t wrote: > Thank you! > > On Fri, Sep 30, 2016 at 2:36 AM, Mart

Wicket.Ajax.transports

2016-10-10 Thread durairaj t
How to get "Wicket.Ajax.transports" in wicket 7? I'm getting error while executing the below script in wic7. var t = Wicket.Ajax.transports;

Re: Wicket.Ajax.transports

2016-10-10 Thread durairaj t
; > On Mon, Oct 10, 2016 at 9:47 PM, durairaj t > wrote: > > > How to get "Wicket.Ajax.transports" in wicket 7? > > > > I'm getting error while executing the below script in wic7. > > var t = Wicket.Ajax.transports; > > >

Re: Wicket.Ajax.transports

2016-10-10 Thread durairaj t
ojects/wicket/guide/7.x/guide/ajax.html#ajax_5 > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Mon, Oct 10, 2016 at 10:39 PM, durairaj t > wrote: > > > The below code needs to be replaced for Wicket 7. > > > > var t =

Re: Wicket.Ajax.transports

2016-10-10 Thread durairaj t
Thank you!. Let me integrate it in my application. On Mon, Oct 10, 2016 at 5:33 PM, Martin Grigorov wrote: > On Mon, Oct 10, 2016 at 11:19 PM, durairaj t > wrote: > > > Yes I tried, but the following lines from the examples are not working, > > $(hiderId).width($(

Is it possible to set the PDF Zoom level while loading pdf in ByteArrayResource ?

2016-10-18 Thread durairaj t

ResponseIOException

2016-12-20 Thread durairaj t
I'm migrating my application to wicket7.x, but it is still running in wicket1.5 in production and logging following error frequently and throwing OutOfMemoryError later. I'm still analyzing wicket1.5 code for the root cause of the memory leakage. Is it an existing error with the wicket1.5.x? did

Re: ResponseIOException

2016-12-21 Thread durairaj t
er has the chance to write the response back to > > it. > > > > Martin Grigorov > > Wicket Training and Consulting > > https://twitter.com/mtgrigorov > > > > On Wed, Dec 21, 2016 at 3:28 AM, durairaj t > > wrote: > > > >> I&#

Re: ResponseIOException

2016-12-22 Thread durairaj t
> > > > ResponseIOException is not related. It occurs when the browser closes the > > connection before the server has the chance to write the response back to > > it. > > > > Martin Grigorov > > Wicket Training and Consulting > > https://twitter.com/mtgrig

Re: [ANNOUNCE] CVE-2016-6793 Apache Wicket deserialization vulnerability

2017-01-03 Thread durairaj t
I can see the Wicket 1.5.16 but not 1.5.17 in " https://wicket.apache.org/start/wicket-1.5.x.html#download";. On Sat, Dec 31, 2016 at 2:21 AM, Pedro Santos wrote: > CVE-2016-6793: Apache Wicket deserialization vulnerability > > Severity: Low > > Vendor: The Apache Software Foundation > > Versi

Re: [ANNOUNCE] CVE-2016-6793 Apache Wicket deserialization vulnerability

2017-01-03 Thread durairaj t
Thank you! On Tue, Jan 3, 2017 at 4:11 PM, Tobias Soloschenko < tobiassolosche...@googlemail.com> wrote: > Hi, > > but it is released. See here: https://mvnrepository.com/arti > fact/org.apache.wicket/wicket-core/1.5.17 > > kind regards > > Tobias > > Am

Silk Test for wicket appplication

2017-01-17 Thread durairaj t
Unable to run the recorded Silk Test scripts in the Silk Test tool and getting the following message in the scripts. "id81_hf_0" := "" , // hidden, unchanged, value: "" "idf_hf_0" := "" , // hidden, unchanged, value: "" "id81_hf_0", "idf_hf_0" are

Wicket7 with the commons-collections4-4.1 and jasperreport6.1.0

2017-04-11 Thread durairaj t
Does anyone face the jasperreport6.1.0 issue with the commons-collections4-4.1 while upgrading your applications to wicket 7.x? I have upgraded the latest versions of common libraries for wicket 7.6 migration, since it is not supporting the older versions. But it gives problem with the jasperrepo

Re: Wicket7 with the commons-collections4-4.1 and jasperreport6.1.0

2017-04-12 Thread durairaj t
ng > https://twitter.com/mtgrigorov > > On Tue, Apr 11, 2017 at 8:19 PM, durairaj t > wrote: > > > Does anyone face the jasperreport6.1.0 issue with the > > commons-collections4-4.1 while upgrading your applications to wicket 7.x? > > > > > > I

Wicket7 - How to replace the getWicketEventHandler()

2017-04-18 Thread durairaj t
How to replace the below code in wicket7? *Below code from wicket 1.5:* protected CharSequence getWicketEventHandler() { return generateCallbackScript(new AppendingStringBuffer("wicketAjaxPost('").append( getCallbackUrl()).append( "', wicketSerialize(Wicket.$('" + getComponent().getMarkupId() +

Wicketstuff for wicket7

2017-06-08 Thread durairaj t
Is the closing parenthesis"()" at the end of the following line of code correct? *AbstractGrid#*getInitializationJavascript() { ... sb.append("})*()*;\n"); } I have a link in the data grid to call a modal window,it is not working with this closing parenthesis, it is good if I removed

Wicket & IE11 kb4025341 update issue

2017-07-20 Thread durairaj t
Wicket 5 crashes IE after the IE kb4025341 updates in Windows7, we are migrating our application to wicket7. But wicket 5 is still in production and it is crashing with all the events but not with "onclick" in certain place of code. IE does not throwing any error message, but a pop up saying " IE

TreePanel#onInitialize() is not being called from AbstractGridRow#onBeforeRender(). - WicketStuff-wicket7

2017-07-28 Thread durairaj t
I'm upgrading wicketstuff from wicket 5 to 7, one of the TreePanel functionality is not working. it was TreePanel#onBeforeRender() in wicket5 and AbstractGridRow #onBeforeRender(). Component component = get(column.getId()); returns BaseTreeColumn object with the null child object in AbstractGri

Re: TreePanel#onInitialize() is not being called from AbstractGridRow#onBeforeRender(). - WicketStuff-wicket7

2017-07-28 Thread durairaj t
thodGrid - > https://github.com/wicketstuff/core/tree/wicket-7.x/inmethod-grid-parent/ > inmethod-grid-examples > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Fri, Jul 28, 2017 at 5:08 PM, durairaj t > wrote: > > > I&

Re: TreePanel#onInitialize() is not being called from AbstractGridRow#onBeforeRender(). - WicketStuff-wicket7

2017-07-28 Thread durairaj t
} } On Fri, Jul 28, 2017 at 11:33 AM, Martin Grigorov wrote: > Where is this line of code ? > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Fri, Jul 28, 2017 at 6:18 PM, durairaj t > wrote: > > > Thank you Martin! I

Re: TreePanel#onInitialize() is not being called from AbstractGridRow#onBeforeRender(). - WicketStuff-wicket7

2017-07-28 Thread durairaj t
Issue has been fixed by adding "*final" *in the TreeGrid initiation. Thank you for your help Martin! On Fri, Jul 28, 2017 at 11:41 AM, durairaj t wrote: > from *Component.java* ---> getFlag(FLAG_INITIALIZED) --> it returns false > > /** > * Used to call {@link #

getEventHandler() and updateAjaxAttributes - cursor focusing the same data grid cell again after the form submission by blur event.

2017-08-18 Thread durairaj t
I have replaced the following wicket5 getEventHandler() code to wicket7 as it is in the below code snippet, it worked but the cursor focusing the same filed again after the form submission by blur event. This event behavior used in the wicket stuff data grid cell, *Expected *functionality: Curso

Re: getEventHandler() and updateAjaxAttributes - cursor focusing the same data grid cell again after the form submission by blur event.

2017-08-18 Thread durairaj t
in IE 11, the "wicket-focusedelementid" is giving the next cell id, but not in IE compatibility mode(IE7, id remains same). Is it due to some error in the ajax behavior which I used to submit the form *Or* something not supporting in wicket 7? On Fri, Aug 18, 2017 at 10:48 AM, duraira

Re: getEventHandler() and updateAjaxAttributes - cursor focusing the same data grid cell again after the form submission by blur event.

2017-08-21 Thread durairaj t
i, Aug 18, 2017 at 11:26 PM, durairaj t > wrote: > > > in IE 11, the "wicket-focusedelementid" is giving the next cell id, but > not > > in IE compatibility mode(IE7, id remains same). > > > > Is it due to some error in the ajax behavior which I

Re: getEventHandler() and updateAjaxAttributes - cursor focusing the same data grid cell again after the form submission by blur event.

2017-08-21 Thread durairaj t
Thank you martin! On Mon, Aug 21, 2017 at 10:11 AM, Martin Grigorov wrote: > It looks like some IE 7 quirck... > We do not support IE older than 11. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Mon, Aug 21, 2017 at 4:42

Blur not listening Enter Key event- Wicket 7

2017-09-01 Thread durairaj t
Following code working with TAB and mouse click events but not with "ENTER KEY", do I need to use keycode and handle it? if yes, any examples for multi behavior functionality? *Wicket 5 is good, but in Wicket 7 it is not working. Code Snippet: new MyEventHandlingBehavior("blu

Re: Blur not listening Enter Key event- Wicket 7

2017-09-06 Thread durairaj t
lting > https://twitter.com/mtgrigorov > > On Fri, Sep 1, 2017 at 5:41 PM, durairaj t wrote: > > > Following code working with TAB and mouse click events but not with > "ENTER > > KEY", do I need to use keycode and handle it? if yes, any examples for > >

Re: Wicket 1.5 PageExpiredException

2017-09-25 Thread durairaj t
Is it happening in all the browsers? Have you tried the scenarios as given below in your application to reproduce the same issue in your machine or the development server? Scenario: Open certain set of application pages simultaneously by clicking the links (other links), do not stop until you r

Caused by java util ConcurrentModificationException

2017-12-28 Thread durairaj t
My application is running in Wicket7.6 frequently logging the below error and increasing the log file size, Any help? ERROR [org.apache.wicket.serialize.java.JavaSerializer] (default task-54) error writing object [Page class = com.tre.wktcommon.components.FieldSearchTField$5$1, id = 122, rend

Re: Caused by java util ConcurrentModificationException

2017-12-28 Thread durairaj t
object org.infinispan.commands.write.PutKeyValueCommand@b04c35d9 in object org.infinispan.commands.remote.SingleRpcCommand@5963da51 On Thu, Dec 28, 2017 at 1:31 PM, durairaj t wrote: > My application is running in Wicket7.6 frequently logging the below error > and increasing the log fil