You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to have sorting enabled on my table. When a user clicks on a header, the client does an API request to fetch sorted data based on the column. This functionality works w/ the following:
<t.head
@columns={{@tableColumns}}
@onUpdateSorts={{this.handleColumnHeaderClick}}
@widthConstraint="eq-container"
as |h|
>
<h.row as |r|>
<r.cell class="FileManager_tableCell" as |column columnMeta|>
<span class="FileManager_tableHeader">
{{column.name}}
{{#if column.isSortable}}
{{alloy-icon name='sort' size='small'}}
{{/if}}
</span>
</r.cell>
</h.row>
</t.head>
However when I hover my mouse, I don't get the highlight css.
I am trying to have sorting enabled on my table. When a user clicks on a header, the client does an API request to fetch sorted data based on the column. This functionality works w/ the following:
However when I hover my mouse, I don't get the highlight css.
The tableColumns I passed in is:
Am I missing something here?
Running
"ember-table": "^3.3.1",
The text was updated successfully, but these errors were encountered: