Re: ListenerInvocationNotAllowedException and InlineFrames

2015-02-19 Thread Wayne W
Hi Tobias, no the InlineFrame is never disabled (or anything in the hierarchy) so I don't know why this happens. I've overridden the isEnabledInHierarchy() to return true to side step the issue for now. I will perhaps try and get a quick start together to show the issue. thanks On Wed, Feb 18,

Re: ListenerInvocationNotAllowedException and InlineFrames

2015-02-18 Thread Wayne W
Wicket seems to think its not enabled isEnabledInHierarchy() returns false randomly On Wed, Feb 18, 2015 at 4:48 PM, Wayne W waynemailingli...@gmail.com wrote: Hi, we're still stuck on this. I can reproduce it - it seems a bit random but I suspect it to do when the browser makes the

Re: ListenerInvocationNotAllowedException and InlineFrames

2015-02-18 Thread Tobias Soloschenko
Hi, is there a point where you disable your components? Because this kind of exceptions occurs if you try to invoke an onclick on a disabled component. Maybe you enable your components in a thread if a service is read or something like this and in some cases the components are enabled

Re: ListenerInvocationNotAllowedException and InlineFrames

2015-02-18 Thread Tobias Soloschenko
Hi again, I had a look at the method isEnabledInHierarchy() in Component and it hasn't changed for about 2 years. Even the places the flags are used (RFLAG_ENABLED_IN_HIERARCHY_SET, RFLAG_ENABLED_IN_HIERARCHY_VALUE) haven't changed. kind regards Tobias Am 18.02.15 um 18:06 schrieb Wayne

Re: ListenerInvocationNotAllowedException and InlineFrames

2015-02-18 Thread Wayne W
Hi, we're still stuck on this. I can reproduce it - it seems a bit random but I suspect it to do when the browser makes the request. I can hit the same page and sometimes its good and sometimes this exception is thrown. There's definitely something wrong here.