Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

Advanced Example (Line break at semicolon)

Column Template (HTML):

<div class="ui-grid-cell-contents" >
<div ng-repeat="role in grid.appScope.executeCustomJs(grid, row, col)">
{{role}}
</div>
</div>

Custom JavaScript:

var cellValue = grid.getCellValue(row, col);
if (cellValue) {
return cellValue.split(';');
}
return undefined;

...