我正在使用 Angular 和 Synfusion。我想知道如何在一列中有多个属性。Synfusion 的文档并没有真正的帮助..
<ej-grid id="Grid" #grid [dataSource]="datasource.infos" allowPaging="true" allowFiltering="true" selectionType="single" allowSelection="true"
[selectionSettings]="selectionMode" (rowSelected)="rowSelected()" (cellSelected)="onCellSelected($event)">
<e-columns>
<e-column field="forename" headerText="Fullname"></e-column>
</e-columns>
</ej-grid>
在<e-column field="forname" headerText <e-column field="forename" headerText="Patient"></e-column>此字段中,我还需要姓氏,但我不知道如何使用 Syncfusion。在“forname surname”列中应显示中间有空格
有人有想法吗?