You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
philippe...@gmail.com
on 3 Jul 2011 at 5:40The text was updated successfully, but these errors were encountered: