Skip to content

Commit

Permalink
Fixed #2337
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed May 4, 2017
1 parent 692bd6e commit faaedc1
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -1226,7 +1226,12 @@ protected void encodeCell(FacesContext context, DataTable table, UIColumn column
encodeColumnSelection(context, table, clientId, column, selected);
}

column.encodeAll(context);
if(column instanceof DynamicColumn) {
column.encodeAll(context);
}
else {
column.renderChildren(context);
}

writer.endElement("td");
}
Expand Down

0 comments on commit faaedc1

Please sign in to comment.