I\'ve got a little problem adding more then one prop to column in ngx-datatable:
columns = [
{ prop: \'semesterName\', name: \'סמסטר\', resizeable: false }
Figured it out:
To change column names - let-column
Formatting cell content (ex: Date) - let-value
Formatting with multiple properties Ex: Date - let-row
The template:
סמסטר
{{row.semesterName}}
מפגש
{{row.event}}
{{row.eventName}}
מועד מפגש
{{row.where}}
{{row.when}}
מרצה
{{row.lecturerName}}
חוג
{{row.hugName}}
No need for [columns] anymore - remove it from the template.