Rati Wannapanop

Results 234 comments of Rati Wannapanop

Vuetable is mainly for presentation. But you can code those additional features yourself.

@arjayads Vuetable-2 will pass `rowData` and `rowIndex` to `CustomActions` component automatically. See the source code [here](https://github.com/ratiw/vuetable-2/blob/master/src/components/Vuetable.vue#L66)

@carlosiv Have you check out this [repo](https://github.com/ratiw/vuetable-sample-api-endpoint) yet?

@TheFrankman Sorry for the confusion. It was just a quick and dirty way of implementing the server side to show the use-case of Vuetable. In real life, you should really...

@stidges Well, I think that can be done. I just initially thought it is unnecessary so the code I wrote only maps the inputs to the existing public properties only....

@stidges Now, the mapInputToCommandProperties() should throw an exception when any public property is not present in the input, so it behaves more like it constructor counterpart. By the way, any...

I'm having quite the same issue, for example the CreatePurchaseOrderCommand class, where there are a lot of properties and it doesn't really make sense to throw everything in the constructor....

@Mdpproduction Sorry, my initial solution does not work because I overlook 'newIntanceArgs()'. Please see PR#14 instead, it should work now.

@IsraelOrtuno I was thinking about the same thing you mentioned after reading through the discussion on another PR#15 regarding the SRP violations. I like the idea of the command being...

What do you think about my solution? https://github.com/ratiw/Commander/blob/196555f354d4e4df13a8f60a2627aa6992e768c0/src/Laracasts/Commander/CommanderTrait.php Any suggestion and comment are very welcome as I can also learn on this. :)