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
Hi everyone, is there a way to edit items directly on list view? Let's say we have something like:
class PriceListLayout extends Table
{
/**
* Data source.
*
* @var string
*/
public $target = 'prices';
/**
* @return TD[]
*/
public function columns(): array
{
return [
TD::make('id')
->filter(NumberRange::make()),
TD::make('price')
->filter(NumberRange::make()),
I would like to create an option for inline editing (the user will click on an item and fields become visible) or is it possible to use a modal window for this purpose? I can not make it running.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi everyone, is there a way to edit items directly on list view? Let's say we have something like:
I would like to create an option for inline editing (the user will click on an item and fields become visible) or is it possible to use a modal window for this purpose? I can not make it running.
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions