leantony
leantony
Remove the 'edit' key from the `$buttonsToGenerate` array On Wed, Sep 19, 2018 at 11:27 AM ratbek wrote: > I wrote a code to make custom row button below: >...
https://github.com/leantony/laravel-grid/blob/master/docs/buttons.md#adding-buttons-with-urls-dependent-on-the-data-items https://github.com/leantony/laravel-grid/blob/master/docs/buttons.md#adding-custom-buttons On Thu, Sep 20, 2018 at 10:36 AM Antony Chacha wrote: > Remove the 'edit' key from the `$buttonsToGenerate` array > > > On Wed, Sep 19, 2018...
Will look into it. I've not been on github for a while.
Currently, *columns listed on the grid can be/not exported*. If your column is on the grid, all you need to do for it to be exported is this; > Assuming...
https://github.com/leantony/laravel-grid/blob/master/docs/general.md#export
I do not think a feature is required for this... You can follow the instructions [here](https://laravel-excel.maatwebsite.nl/docs/3.0/export/from-query) to try out something that covers your scenario. And then probably create a button...
Check [this](https://github.com/leantony/laravel-grid/blob/a5cecf45e5f9e85aa7384436d4270aa36e75fa58/src/resources/config/grid.php#L66) out. I think it might be able to sort you out. There's a hidden config parameter I introduced sometime ago...had actually forgotten about it. Try changing it to...
Default - do you mean in terms of ascending or descending? The sort mode toggles between the two when you click on a row
Yes, I understand. The problem is, the `linkable` class is added on the element. And since this element spans the entire row, the buttons on the row get affected, so...
Try something like this; ```php class UsersController extends Controller { /** * Display a listing of the resource. * * @param UsersGridInterface $usersGrid * @param Request $request * @return \Illuminate\Http\Response...