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.

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 <durairaj@gmail.com> 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 H

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
ry with Wicket 6.23.0/7.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 <durairaj@gmail.com> > wrote: > > > I'm migrating wicket1.4.12 to 1.5.x, but wicket 1.4.1

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

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*

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
tin Grigorov <mgrigo...@apache.org> 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 &l

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

2016-03-29 Thread durairaj t
lation > on this text. 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

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: Panel.this always giving previous version of the object but not the modified one.

2016-04-25 Thread durairaj t
> > On Fri, Apr 22, 2016 at 10:43 PM, durairaj t <durairaj@gmail.com> > wrote: > > > Thank you Martin. I tried with examples but those are not working in my > > case. I don't know how to call the onEvent in line number 19 in the below > > code snippet. Please sh

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

2016-04-22 Thread durairaj t
his event in all components 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 <durairaj@gmail.com> > wrote: > > > "openerPage.getPageRefere

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

2016-04-26 Thread durairaj t
send(openerPage, 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/

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(",")”

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 <durairaj@gmail.com> wrote: > Hi, > > The "AutoCompleteTextField" is printing the suggested values in the > bullet point,but no

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=i Actual result: - China - Chile - Canada -

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 <martin.grigo...@gmail.com> wrote: > Hi, > > On Apr 29, 2016 11:35 PM, "durairaj t" <durairaj@gmail.com> wrote: > > > > I’m seeing different URL’s while navi

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 <durairaj@gmail.com> > wrote: > > > Hi, > > > > > > > > I'm using "*new* ModalWindow.WindowClose

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 <durairaj@gmail.com> wrote: > IResourceListener#onResourceRequested() is not being called in IE11. but > it is working with Google Chrome. > > I referred the below UR

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

2016-07-25 Thread durairaj t
nt properties. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Mon, Jul 25, 2016 at 4:41 PM, durairaj t <durairaj@gmail.com> > wrote: > > > It is already added in my app.java. > > > > isJava

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

2016-07-25 Thread durairaj t
nd Consulting > https://twitter.com/mtgrigorov > > On Mon, Jul 25, 2016 at 4:57 PM, durairaj t <durairaj@gmail.com> > wrote: > > > There is no intermediate page. I did not see anything in between the > > current page to the targeted page. > > > > When I'm runni

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

2016-07-25 Thread durairaj t
edBrowserInfo(true) > *to your 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 <durairaj@gmail.com>: > > > The below code is giving *-1* for

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?

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:

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

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

2016-08-31 Thread durairaj t
gt; If this doesn't help 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 <durairaj@gmail.com> > wrote: &

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

2016-09-08 Thread durairaj t
How to extend the page life time? On Wed, Aug 31, 2016 at 3:29 PM, durairaj t <durairaj@gmail.com> wrote: > Thank you martin! Let me try this. > > > > > On Wed, Aug 31, 2016 at 2:27 PM, Martin Grigorov <mgrigo...@apache.org> > wrote: > >> Hi, >

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

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

2016-08-31 Thread durairaj t
owScriptError(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 it. > > François > > > >

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

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

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 <durairaj@gmail.com> wrote: > Hi Martin, > > I got the exact error message

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

2016-09-12 Thread durairaj t
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 <mgrigo...@apache.org> wrote: > Hi, > > > On Thu, Sep 8, 2016 at 8

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: 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 <mgrigo...@apache.org> wrote: > On Mon, Sep 12, 2016 at 5:26 PM, durairaj t <durairaj@gmail.com> > wrote: > > > Hi Martin, > > > > Default

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 <durairaj@gmail.com>: > > > > How to replace the "new CancelEventIfNoAjaxDecorator();" in wicket 7 > > AjaxCallListener? > > > > Any help? >

AjaxCallListener

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

"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
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 <durairaj@gmail.com> wrote: > Thank you! > > On Fri, Sep 3

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

2016-09-30 Thread durairaj t
Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Thu, Sep 29, 2016 at 9:33 PM, durairaj t <durairaj@gmail.com> > wrote: > > >Do I need to remove the entire package (com.inmethod.grid.treegrid - > > auther: Matej Knoop) and s

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
gle to tell it to forget 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 <durairaj@gmail.com> > wrote: > > > Unable to access the URL: https://wb.agilecoders

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

Re: AjaxCallListener

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

Re: AjaxCallListener

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

Re: AjaxCallListener

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

Re: Wicket.Ajax.transports

2016-10-10 Thread durairaj t
com/mtgrigorov > > On Mon, Oct 10, 2016 at 9:47 PM, durairaj t <durairaj@gmail.com> > 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; > > >

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
projects/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 <durairaj@gmail.com> > wrote: > > > The below code needs to be

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

2016-10-18 Thread durairaj 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 <mgrigo...@apache.org> wrote: > On Mon, Oct 10, 2016 at 11:19 PM, durairaj t <durairaj@gmail.com> > wrote: > > > Yes I tried, but the following lines from t

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

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

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
he 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/mtgrigorov > > > > On Wed, Dec 21, 2016 at 3:28 AM, durairaj t

Re: ResponseIOException

2016-12-22 Thread durairaj t
eapDumpOnOutOfMemoryError -XX:HeapDumpPath=. > > > > 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

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

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

2017-04-12 Thread durairaj t
Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Tue, Apr 11, 2017 at 8:19 PM, durairaj t <durairaj@gmail.com> > wrote: > > > Does anyone face the jasperreport6.1.0 issue with the > > commons-collections4-4.1 while upgrading your applications

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() +

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

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 <mgrigo...@apache.org> 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 <durairaj...

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 "

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 <durairaj@gmail.com> wrote: > from *Component.java* ---> getFlag(FLAG_INITIALIZED) --> it returns false > &

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

2017-07-28 Thread durairaj t
the samples application for InMethodGrid - > 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 <d

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,

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:

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

Re: Blur not listening Enter Key event- Wicket 7

2017-09-06 Thread durairaj t
t; Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Fri, Sep 1, 2017 at 5:41 PM, durairaj t <durairaj@gmail.com> wrote: > > > Following code working with TAB and mouse click events but not with > "ENTER > > KEY", do I ne

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

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
/mtgrigorov > > On Fri, Aug 18, 2017 at 11:26 PM, durairaj t <durairaj@gmail.com> > wrote: > > > in IE 11, the "wicket-focusedelementid" is giving the next cell id, but > not > > in IE compatibility mode(IE7, id remains same). > > > >

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
n Mon, Aug 21, 2017 at 4:42 PM, durairaj t <durairaj@gmail.com> > wrote: > > > No issues with the Chrome and Firefox. It is working as expected. > > > > On Mon, Aug 21, 2017 at 3:54 AM, Martin Grigorov <mgrigo...@apache.org> > > wrote: > > &

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

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,

Re: Caused by java util ConcurrentModificationException

2017-12-28 Thread durairaj t
in 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 <durairaj@gmail.com> wrote: > My application is running in Wicket7.6 frequently logging the below error > an