Datagrid filter from a list

How do I filter a datagrid from a list of short values?.....I invoke datasource method to get all offices, but i need to show only offices Id, where user has access to watch information. The list of office ID that user can see I have it in a short type array or list with office objects.

how do i set the filter in radzen ?

You need to filter the property which your DataGrid is bound to e.g.

result.Where(item => myListOfShortValues.Contains(item.OfficeID))

Thks for quickly answer, it works !!