cancel
Showing results for 
Search instead for 
Did you mean: 

Filter in sap.m.Table, how to add multiple values dynamically to the Filter from another Service.

Former Member
0 Kudos
893

Hi I'm using the following code to Filter the m.Table data. I'm passing a fixed value here in the code, however I need to pass multiple values to the filter dynamically from another OData service at the time the Table gets populated :

                               <Table
				id="table"
				width="auto"
				class="sapUiResponsiveMargin"
				items="{
					path: '/OverviewSet',
					sorter: {
						path: 'IPlant',
						descending: false
					},
					
	filters : [{path: 'IPlant', operator: 'EQ', value1: '4041' }]
					
				}" >

Is there a way that this can be possible considering I'm passing the filter in the view.

Accepted Solutions (0)

Answers (0)