brownbear1773
Advanced Table Plugin global views
Using Filament plugin Advanced Tables. I have a user that is registered to two teams. I create a view called SimpleView on one of the teams making it global and public. I approve that view but it does not show on the user's other team. Why and how should I resolve?
4 replies
Fileupload does not trigger camera on mobile CHROME
I have this code and have tried it on several mobile browsers. All seem to trigger the camera/gallery choice for the source except chrome. In chrome seems I can only select media from gallery. What am I missing?
2 replies
Calling livewire component from xdata
I am writing a ResizeableTextColumn component for use in Filament Resource table
This is a sample of usage
This is an example of my code and I need to emit back to the server to persist the user defined width (attached) and the livewire listener
I see that window.livewire is undefined so the emit never works. The objective is send the resizing info back to the listener to persist it. I am new at Laravel and filament but understand the concepts (developer for 40+ years)
1 replies
slideOver not working for me
I am a veteran developer but newbie with Laravel/filament. Working thru Dary's video on duplicating the filament demo. I have a snippet below that you can see in the cations I have added a ->slideOut on the Edit. Thing is it does not work and I have no idea why, Thoughts?
```
public static function form(Form $form): Form
{
return $form
->schema([
Forms\Components\Group::make()
->schema([
Section::make()
->schema([
TextInput::make('name')
->required()
->unique()
}),
]), ]),
]); } public static function table(Table $table): Table { return $table ->columns([ Tables\Columns\TextColumn::make('name')->searchable()->sortable(), TextColumn::make('parent_name')->label('Parent')->searchable()->sortable(), IconColumn::make('is_visible')->label('Visibility')->searchable()->sortable(), TextColumn::make('updated_at')->label('Updated at')->date()->sortable(), ]) ->filters([ // ]) ->actions([ //Tables\Actions\ActionGroup::make([ //Tables\Actions\ViewAction::make(), Tables\Actions\EditAction::make()->slideOver(), //Tables\Actions\DeleteAction::make(), //]) ]) ->bulkActions([ Tables\Actions\BulkActionGroup::make([ Tables\Actions\DeleteBulkAction::make(), ]), ]); }
->unique()
}),
]), ]),
]); } public static function table(Table $table): Table { return $table ->columns([ Tables\Columns\TextColumn::make('name')->searchable()->sortable(), TextColumn::make('parent_name')->label('Parent')->searchable()->sortable(), IconColumn::make('is_visible')->label('Visibility')->searchable()->sortable(), TextColumn::make('updated_at')->label('Updated at')->date()->sortable(), ]) ->filters([ // ]) ->actions([ //Tables\Actions\ActionGroup::make([ //Tables\Actions\ViewAction::make(), Tables\Actions\EditAction::make()->slideOver(), //Tables\Actions\DeleteAction::make(), //]) ]) ->bulkActions([ Tables\Actions\BulkActionGroup::make([ Tables\Actions\DeleteBulkAction::make(), ]), ]); }
4 replies