Hi
@Saba Baig if you want to add one more column in Search table then first make sure that your api will return "testCol" attribute same like name, description etc.
Once your done with API then go to SearchResultLayoutView.js. and in getFixedDslColumn funciton add your column.
I am assuming your attribute value is string. so here you go.
col['testCol'] = {
label: "your Label", // you can see this label on table header
cell: "String",
editable: false,
sortable: false,
};
So based on col['testCol'] it will get the testCol value from model and display in table cell recursively.
Note : If your attribute value is not string or you want to modify cell output then see this example: