Skip to Content
0
Sep 20, 2019 at 06:57 PM

How to add a search field for each column in sap.m.table ?

471 Views

Hi,

I want to add a search field (Input field) below every column header so that when user types in the input box, items will be filtered based on the search. I know how to implement the search but struggling to figured out how I can add a row with search/inout fields below ...some thing like below.

Column1 Column2 Column3

Input field-1 Input filed-2 Input field-3

I tried something like below but it is overwriting the first control, in this case input control is over writing Text control.

<columns>

<Column>

<Text text="Program" />

<Input />

</Column>

</columns>