BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
import { DataUtil} from '@syncfusion/ej2-data';
@Component({
selector: 'app-root',
templateUrl: 'a<ejs-grid #grid [dataSource]='data' allowPaging='true' [pageSettings]='pageSettings' [toolbar]='toolbar' (toolbarClick)='toolbarClick($event)' [allowExcelExport]='true' [allowPdfExport]='true' [allowGrouping]="true">
<e-columns>
<e-column field='OrderDate' headerText='OrderDate' type='date' width='120' [format]='formatOptions' [enableGroupByFormat]='true'></e-column>
. . .
</e-columns>
})
export class AppComponent {
public ngOnInit(): void {
this.data = DataUtil.parse.parseJson([{
"OrderID":10307,
"OrderDate":"1996-09-17T00:00:00.000Z",
. . .
}]);
this.formatOptions = { type: 'dateTime', skeleton: 'short' };
. . .
} |