[ 
https://issues.apache.org/jira/browse/WICKET-4470?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michal Wegrzyn updated WICKET-4470:
-----------------------------------

    Description: 
It seems that probably WICKET-4227 is not fixed. I am still getting problems in 
1.5.5.

If I override ajax channel like:

@Override
protected AjaxChannel getChannel() {
        return new AjaxChannel( "0", AjaxChannel.Type.DROP ); }

Only last item is loaded and other items are in continuous loading state - see 
WICKET-4397.

With unique channel name:

@Override
protected AjaxChannel getChannel() {
        return new AjaxChannel( String.valueOf( System.currentTimeMillis() ), 
AjaxChannel.Type.DROP ); }

lazy items are loaded asynchronously, however if I try to do action which 
results in drop, I am getting the same exception as in WICKET-4227.


  was:
It seems that probably WICKET-4227 is not fixed. I am still getting problems in 
1.5.5.

If I override ajax channel like:

@Override
protected AjaxChannel getChannel() {
        return new AjaxChannel( "0", AjaxChannel.Type.DROP ); }

Only last item is loaded and other items are in continuous loading state - see 
WICKET-4397.

With unique channel name:

@Override
protected AjaxChannel getChannel() {
        return new AjaxChannel( String.valueOf( System.currentTimeMillis() ), 
AjaxChannel.Type.DROP ); }

lazy items are loaded asynchronously, however if I try to do action which 
results in drop, I am getting the same exception as in Wicket-4227.


    
> problem with loading lazy components
> ------------------------------------
>
>                 Key: WICKET-4470
>                 URL: https://issues.apache.org/jira/browse/WICKET-4470
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 1.5.5
>            Reporter: Michal Wegrzyn
>         Attachments: myproject.zip
>
>
> It seems that probably WICKET-4227 is not fixed. I am still getting problems 
> in 1.5.5.
> If I override ajax channel like:
> @Override
> protected AjaxChannel getChannel() {
>         return new AjaxChannel( "0", AjaxChannel.Type.DROP ); }
> Only last item is loaded and other items are in continuous loading state - 
> see WICKET-4397.
> With unique channel name:
> @Override
> protected AjaxChannel getChannel() {
>         return new AjaxChannel( String.valueOf( System.currentTimeMillis() ), 
> AjaxChannel.Type.DROP ); }
> lazy items are loaded asynchronously, however if I try to do action which 
> results in drop, I am getting the same exception as in WICKET-4227.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to