Didn鈥檛 have time to try it, but this should work in theory (wrapping <vaadin-grid-filter> with <vaadin-grid-sorter>):
<vaadin-grid-column>
<template class="header">
<vaadin-grid-sorter path="name.first">
<vaadin-grid-filter aria-label="First Name" path="name.first" value="[[_filterFirstName]]">
<input placeholder="First Name" value="{{_filterFirstName::input}}" focus-target>
</vaadin-grid-filter>
</vaadin-grid-sorter>
</template>
</vaadin-grid-column>
Thank you.
it worked as:
```
[[item.OphID]]
ID
Most helpful comment
Didn鈥檛 have time to try it, but this should work in theory (wrapping
<vaadin-grid-filter>with<vaadin-grid-sorter>):