You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Gabriel LANDON (JIRA)" <ji...@apache.org> on 2009/08/06 03:25:14 UTC

[jira] Created: (WICKET-2419) AjaxEditableMultiLineLabel doesn't handle huge text properly

AjaxEditableMultiLineLabel doesn't handle huge text properly
------------------------------------------------------------

                 Key: WICKET-2419
                 URL: https://issues.apache.org/jira/browse/WICKET-2419
             Project: Wicket
          Issue Type: Bug
          Components: wicket-extensions
    Affects Versions: 1.4.0, 1.3.7
         Environment: Windows Vista - IE8 and Firefox 3.5.2
            Reporter: Gabriel LANDON
            Priority: Minor


I've got a panel with an AjaxEditableMultiLineLabel. When a user input a
large text in it (more than 8 000 or 10 000 caracters) nothing happen. The
textarea remains in edit mode.
No javascript error is raised, but when I look in the ajax debug console,
here's what I got :

INFO: Invoking pre-call handler(s)...
INFO: focus removed from id2d
ERROR: Received Ajax response with code: 400
INFO: Invoking post-call handler(s)...
INFO: Invoking failure handler(s)...


I've tried with wicket 1.3.6, 1.3.7 and 1.4.0 using IE 8 and firefox 3.5

I've also the same behaviour with the wicket example application.


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (WICKET-2419) AjaxEditableMultiLineLabel doesn't handle huge text properly

Posted by "Martin Grigorov (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/WICKET-2419?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12770115#action_12770115 ] 

Martin Grigorov commented on WICKET-2419:
-----------------------------------------

The problem here is that AjaxEditableMultiLineLabel uses GET request to send the new content to the server:

Initiating Ajax GET request on ?wicket:interface=:0:message:editor::IActivePageBehaviorListener:2:-1&wicket:ignoreIfNotActive=true&save=true&message:editor=If%20yo....

> AjaxEditableMultiLineLabel doesn't handle huge text properly
> ------------------------------------------------------------
>
>                 Key: WICKET-2419
>                 URL: https://issues.apache.org/jira/browse/WICKET-2419
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>    Affects Versions: 1.3.7, 1.4.0
>         Environment: Windows Vista - IE8 and Firefox 3.5.2
>            Reporter: Gabriel LANDON
>            Priority: Minor
>
> I've got a panel with an AjaxEditableMultiLineLabel. When a user input a
> large text in it (more than 8 000 or 10 000 caracters) nothing happen. The
> textarea remains in edit mode.
> No javascript error is raised, but when I look in the ajax debug console,
> here's what I got :
> INFO: Invoking pre-call handler(s)...
> INFO: focus removed from id2d
> ERROR: Received Ajax response with code: 400
> INFO: Invoking post-call handler(s)...
> INFO: Invoking failure handler(s)...
> I've tried with wicket 1.3.6, 1.3.7 and 1.4.0 using IE 8 and firefox 3.5
> I've also the same behaviour with the wicket example application.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (WICKET-2419) AjaxEditableMultiLineLabel doesn't handle huge text properly

Posted by "Martin Grigorov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-2419?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Grigorov updated WICKET-2419:
------------------------------------

    Attachment: WICKET-2419.patch

A patch against wicket-1.5-snapshot

> AjaxEditableMultiLineLabel doesn't handle huge text properly
> ------------------------------------------------------------
>
>                 Key: WICKET-2419
>                 URL: https://issues.apache.org/jira/browse/WICKET-2419
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>    Affects Versions: 1.3.7, 1.4.0
>         Environment: Windows Vista - IE8 and Firefox 3.5.2
>            Reporter: Gabriel LANDON
>            Priority: Minor
>         Attachments: WICKET-2419.patch
>
>
> I've got a panel with an AjaxEditableMultiLineLabel. When a user input a
> large text in it (more than 8 000 or 10 000 caracters) nothing happen. The
> textarea remains in edit mode.
> No javascript error is raised, but when I look in the ajax debug console,
> here's what I got :
> INFO: Invoking pre-call handler(s)...
> INFO: focus removed from id2d
> ERROR: Received Ajax response with code: 400
> INFO: Invoking post-call handler(s)...
> INFO: Invoking failure handler(s)...
> I've tried with wicket 1.3.6, 1.3.7 and 1.4.0 using IE 8 and firefox 3.5
> I've also the same behaviour with the wicket example application.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (WICKET-2419) AjaxEditableMultiLineLabel doesn't handle huge text properly

Posted by "Igor Vaynberg (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-2419?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Igor Vaynberg resolved WICKET-2419.
-----------------------------------

       Resolution: Fixed
    Fix Version/s: 1.5-M1
                   1.4.4
         Assignee: Igor Vaynberg

> AjaxEditableMultiLineLabel doesn't handle huge text properly
> ------------------------------------------------------------
>
>                 Key: WICKET-2419
>                 URL: https://issues.apache.org/jira/browse/WICKET-2419
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>    Affects Versions: 1.3.7, 1.4.0
>         Environment: Windows Vista - IE8 and Firefox 3.5.2
>            Reporter: Gabriel LANDON
>            Assignee: Igor Vaynberg
>            Priority: Minor
>             Fix For: 1.4.4, 1.5-M1
>
>         Attachments: WICKET-2419.patch
>
>
> I've got a panel with an AjaxEditableMultiLineLabel. When a user input a
> large text in it (more than 8 000 or 10 000 caracters) nothing happen. The
> textarea remains in edit mode.
> No javascript error is raised, but when I look in the ajax debug console,
> here's what I got :
> INFO: Invoking pre-call handler(s)...
> INFO: focus removed from id2d
> ERROR: Received Ajax response with code: 400
> INFO: Invoking post-call handler(s)...
> INFO: Invoking failure handler(s)...
> I've tried with wicket 1.3.6, 1.3.7 and 1.4.0 using IE 8 and firefox 3.5
> I've also the same behaviour with the wicket example application.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.