This is my typescript file. I am binding this data to wijmo grid. I need to give line break in between 'shankar' and the date '12/10/2018'.
this.dataSource.push({
Name: 'John',
Select: 'Selected',
lastmodified: 'Shankar' +'/n'+
'12/10/2018'
});
"/n" and "/br"are not working.
My Html code for wijmo
<wj-flex-grid-column *ngFor="let col of columnDefinitions"
[minWidth]="200" width="*"
[header]="col.header" [binding]="col.binding" [visible]="col.visible"
[allowDragging]="false" [wordWrap]="true" >
</wj-flex-grid-column>
thanks in Advance!