What steps will reproduce the problem?
1. add new elt form with multiple select
2. modify selected values
3. displayed values not pretty
What is the expected output? What do you see instead?
each value separated by comma
What version of the product are you using? On what operating system?
1.3
Please provide any additional information below.
proposed solution:
function _fnOnRowAdded(data) {
...
if (this.nodeName.toLowerCase() == "select" || this.tagName.toLowerCase() ==
"select") {
// HACK for select values
sCellValue =
$.map(
$.makeArray($("option:selected", this)),
function(n, i){
return $(n).text();
}).join(",");
}
...
}
Original issue reported on code.google.com by philippe...@gmail.com on 3 Jul 2011 at 5:40
Original issue reported on code.google.com by
philippe...@gmail.com
on 3 Jul 2011 at 5:40