FilamentF
Filament2y ago
dyo

Set the max width of viewColumn and wrap the text

I'm using viewColumn in my table resource, and i've tried using extraHeaderAttributes but i got no luck.

I called the component like this

ViewColumn::make('judul')->searchable()
  ->view('tables.columns.kolom-judul')
  ->extraHeaderAttributes(['style' => 'width: 10px']),


the script in the blade view:

<div class="">
    <style>
        .text-ellipsis {
            overflow: hidden;
            text-overflow: ellipsis;
            display: inline-block;

        }

        .text-ellipsis:hover {
            cursor: pointer;
        }
    </style>
    
    <div class="flex" style="margin-left:8px;">
        <img src="{{ $getRecord()->image ? asset('storage/' . $getRecord()->image) : null }}" alt=""
           class="object-center overflow-hidden w-10 border-2 border-inherit rounded"
            onerror="this.src='{{ asset('img/sample-campaign.png') }}';"
        >

        <span class="text-ellipsis" style="margin-left: 10px;">{{ $getState() }}</span>
    </div>
</div>


can someone help me..
image.png
Was this page helpful?