|
const date = '1948-12-08T00:00:00Z';
let grid: Grid = new Grid(
{
dataSource: data,
allowPaging: true,
query: new Query().where('BirthDate', 'greaterthanorequal', new Date(date)),
columns: [
{ field: 'BirthDate', type:'date', format: 'yMd', headerText: 'Birth', textAlign: 'Right' },
],
pageSettings: { pageCount: 3 }
});
grid.appendTo('#Grid'); |
|
const date = '1948-12-08T00:00:00Z';
let grid: Grid = new Grid(
{
. . . .
created: function (args) {
grid.query = new Query().where('BirthDate', 'greaterthanorequal', date)
},
columns: [
{ field: 'BirthDate', type: 'date', format: 'yMd', headerText: 'Birth', textAlign: 'Right' },
],
. . . . . . .
grid.appendTo('#Grid');
|