You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Jeanne Waldman (JIRA)" <de...@myfaces.apache.org> on 2007/06/21 01:22:26 UTC

[jira] Created: (TRINIDAD-71) javascript error in sortable table when click on header

javascript error in sortable table when click on header
-------------------------------------------------------

                 Key: TRINIDAD-71
                 URL: https://issues.apache.org/jira/browse/TRINIDAD-71
             Project: MyFaces Trinidad
          Issue Type: Bug
          Components: Components
    Affects Versions: 1.0.1-core
            Reporter: Jeanne Waldman


Firefox 2.0.0.4
Run components/column_sortable.jspx
Click on the table column header to sort it
Javascript error:
Error: a42 has no properties
Source File: http://127.0.0.1:8989/trinidad-demo-context-root/adf/jsLibs/Common1_0_2.js
Line: 8674

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


[jira] Resolved: (TRINIDAD-71) javascript error in sortable table when click on header

Posted by "Jeanne Waldman (JIRA)" <de...@myfaces.apache.org>.
     [ https://issues.apache.org/jira/browse/TRINIDAD-71?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jeanne Waldman resolved TRINIDAD-71.
------------------------------------

       Resolution: Fixed
    Fix Version/s: 1.0.1-core

resolved in RequestQueue.js by checking for null

> javascript error in sortable table when click on header
> -------------------------------------------------------
>
>                 Key: TRINIDAD-71
>                 URL: https://issues.apache.org/jira/browse/TRINIDAD-71
>             Project: MyFaces Trinidad
>          Issue Type: Bug
>          Components: Components
>    Affects Versions: 1.0.1-core
>            Reporter: Jeanne Waldman
>            Assignee: Jeanne Waldman
>             Fix For: 1.0.1-core
>
>
> Firefox 2.0.0.4
> Run components/column_sortable.jspx
> Click on the table column header to sort it
> Javascript error:
> Error: a42 has no properties
> Source File: http://127.0.0.1:8989/trinidad-demo-context-root/adf/jsLibs/Common1_0_2.js
> Line: 8674

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


[jira] Commented: (TRINIDAD-71) javascript error in sortable table when click on header

Posted by "Jeanne Waldman (JIRA)" <de...@myfaces.apache.org>.
    [ https://issues.apache.org/jira/browse/TRINIDAD-71?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12507019 ] 

Jeanne Waldman commented on TRINIDAD-71:
----------------------------------------

It's here in RequestQueue.js
  // 3. create form submit payload
  var content = "";
  for (var key in formParams)
  {
    var paramValue = formParams[key];
    // If it's an array...
    if (paramValue.join)
    {
      var array = paramValue;
      for(var i=0; i < array.length; i++)
      {
        content = TrRequestQueue._appendUrlFormEncoded(content, key, array[i]);
      }
    }
    else
    {
      content = TrRequestQueue._appendUrlFormEncoded(content, key, paramValue);
    }
  }
  return content;
}

> javascript error in sortable table when click on header
> -------------------------------------------------------
>
>                 Key: TRINIDAD-71
>                 URL: https://issues.apache.org/jira/browse/TRINIDAD-71
>             Project: MyFaces Trinidad
>          Issue Type: Bug
>          Components: Components
>    Affects Versions: 1.0.1-core
>            Reporter: Jeanne Waldman
>
> Firefox 2.0.0.4
> Run components/column_sortable.jspx
> Click on the table column header to sort it
> Javascript error:
> Error: a42 has no properties
> Source File: http://127.0.0.1:8989/trinidad-demo-context-root/adf/jsLibs/Common1_0_2.js
> Line: 8674

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