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

2017-08-21 Thread Martin Grigorov
Hi, How does it behave in Chrome/Firefox ? Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Fri, 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

Button not visible, except that it is...

2017-08-21 Thread Entropy
We have a form that underwent some re-writing. After the changes, a button starts throwing the below exception. The button is in a panel that starts invisible but is made visible later. In the event that makes it visible we logged out the button's isVisibleInHierarchy() and it was false at the

Re: Button not visible, except that it is...

2017-08-21 Thread Martin Grigorov
On Mon, Aug 21, 2017 at 5:47 PM, Entropy wrote: > We have a form that underwent some re-writing. After the changes, a button > starts throwing the below exception. The button is in a panel that starts > invisible but is made visible later. In the event that makes it

Re: why is DefaultNestedTree component treated as property within PropertyResolver ?

2017-08-21 Thread UlrichKnaack
Thank you both for your hints, I'm just testing with a MCVE. It seems the behaviour of the DFN depends to which parent it belongs (WebPage or Modal). It also seems to matter if the Modal is opened via an AjaxLink in a page or within a form -- View this message in context:

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
No issues with the Chrome and Firefox. It is working as expected. On Mon, Aug 21, 2017 at 3:54 AM, Martin Grigorov wrote: > Hi, > > How does it behave in Chrome/Firefox ? > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Fri, Aug

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

2017-08-21 Thread Martin Grigorov
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 PM, durairaj t wrote: > No issues with the Chrome and Firefox. It is working as expected. >

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 PM,

How to get generate html link for page with parameters

2017-08-21 Thread fromgate
Hello! I need to create text (in fact it will be a confirmation email) that will contain a link to specific page object with provided parameters (confirmation code). Is there a way to render a BookmarkablePageLink object and get a String that will contain this link? -- View this message in

Re: How to get generate html link for page with parameters

2017-08-21 Thread Martin Grigorov
Hi, What you need is just : RequestCycle.get().urlFor(SomePage.class, somePageParameters) Otherwise also take a look at http://examples8x.wicket.apache.org/mailtemplate/ example. It shows how to render a Page, a Component and how to use TextTemplate. Martin Grigorov Wicket Training and