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

Status
Not open for further replies.
E

egarcia

Guest
A way to do this is to set the filter property in this.$dataServicesState. Here is an example: constructor(@Inject(Injector) injector: Injector) { super(injector); this.$dataServicesState.Customer.filter = { logic: 'and', filters: [{ field: 'CustNum', operator: 'lte', value: 20 }] }; } Please let me know if goes. I hope this helps.

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