From: Jane Sandberg Date: Wed, 23 Jan 2019 03:42:54 +0000 (-0800) Subject: adding a basic grid to create X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=df6c8e0215292a3b6c9e37b92d64c65701b2decd;p=working%2FEvergreen.git adding a basic grid to create Signed-off-by: Jane Sandberg --- diff --git a/Open-ILS/src/eg2/src/app/staff/booking/create-reservation.component.html b/Open-ILS/src/eg2/src/app/staff/booking/create-reservation.component.html index f2e6a268c6..45d8c82213 100644 --- a/Open-ILS/src/eg2/src/app/staff/booking/create-reservation.component.html +++ b/Open-ILS/src/eg2/src/app/staff/booking/create-reservation.component.html @@ -1,3 +1,10 @@ + + + + + + diff --git a/Open-ILS/src/eg2/src/app/staff/booking/create-reservation.component.ts b/Open-ILS/src/eg2/src/app/staff/booking/create-reservation.component.ts index c136791afb..0f5a08b37a 100644 --- a/Open-ILS/src/eg2/src/app/staff/booking/create-reservation.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/booking/create-reservation.component.ts @@ -7,11 +7,18 @@ import { GridDataSource } from '@eg/share/grid/grid'; export class CreateReservationComponent implements OnInit { + scheduleSource: GridDataSource = new GridDataSource(); + constructor( ){ } ngOnInit() { + this.scheduleSource.data = [ + {name: 'Jane', state: 'AZ'}, + {name: 'Al', state: 'CA'}, + {name: 'The Tick', state: 'TX'} + ]; } }