[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: KUIB JFP Filter

Status
Not open for further replies.
J

jackc@fordav.com

Guest
Awesome - Thank you.. Here is what I have and its working - for others searching: in my src\app\modules\timesheet\timesheet\details-grid.base.component.ts I added to the constructor constructor(@Inject(Injector) injector: Injector) { super(injector); this.$dataServicesState['tttc_header'].filter = { logic: 'and', filters: [ { field: 'tch_userid', operator: 'eq', value: 'JACKC' }, { field: 'tch_current', operator: 'eq', value: true }, { field: 'tch_date', operator: 'eq', value: '05-30-2018' }, ] }; } This is now causing the Server Side Filtering needed for the Grid view. Thank you Thank you....

Continue reading...
 
Status
Not open for further replies.
Top