Skip to content
Snippets Groups Projects
Commit a6e4a682 authored by srosse's avatar srosse
Browse files

OO-531: fix an issue with the flexi table with infinite scrolling and IE8/9

parent 287a2064
No related branches found
No related tags found
No related merge requests found
......@@ -85,7 +85,7 @@ class FlexiDataTablesRenderer extends AbstractFlexiTableRenderer implements Comp
.append(" },\n")
.append(" 'aoColumns': [\n");
if(ftE.isMultiSelect()) {
target.append(" {'mData':'choice', bSortable: false },\n");
target.append(" {'mData':'multiSelectCol', bSortable: false },\n");
}
for(int i=0; i<columnsModel.getColumnCount(); i++) {
FlexiColumnModel col = columnsModel.getColumnModel(i);
......
......@@ -123,8 +123,8 @@ public class FlexiTableModelMapper implements Mapper {
if(ftE.isMultiSelectedIndex(i)) {
sb.append(" checked='checked'");
}
sb.append(">");
row.put("choice", sb.toString());
sb.append("/>");
row.put("multiSelectCol", sb.toString());
}
for(int j=0; j<columnsModel.getColumnCount(); j++) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment