Cory Rosenwald

Results 6 comments of Cory Rosenwald

Hey @booni3 , this looks awesome! I'd love to have this feature added. Thanks for the work! Are you open to collaborating? I'm working on another path for the cells...

Thanks @minthemiddle , this is definitely something to think through. We'll need multiple select dropdowns if there are multiple filters. At the least there would need to be a "column"...

See https://github.com/coryrose1/livewire-tables/issues/10#issuecomment-557793634 If a column is sortable, we can have default asc/desc status icons that are HTML entities and completely agnostic rendered after the column title. ``` @if ($sortDir ==...

I've played around with extracting table headers to a Blade component. My first thought was to use a Livewire component, and to extend `LivewireModelTable` in order to have access to...

Update on the header view components. `th-cell.blade.php` ``` {{ $slot }} @if (array_key_exists('sortable', $field) && $field['sortable'] && !is_null($sortField) && $sortField == $field['name']) @if ($sortDir == 'asc') ▲ @elseif ($sortDir ==...

Hey @booni3 , I went down the same route and tried to make a Livewire component that handled the table header row / cells. The issue I ran into was...