[
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.