wdog
wdog
sorry I forgot to write VIP/PID in the script, but now i get another error ``` [Errno 16] Resource busy ``` do i need to change other things? ``` VID...
Hi I have no idea about what's going on. 😄 Can you suggest me some tool to use or check to perform? --- this i what i've discovered: - `print(self.dev)`...
according to the `self.dev` I changed the values in the `loopertrx.py` to ``` VID = 0x0416 PID = 0x5555 ENDPOINT_IN = 0x81 ENDPOINT_OUT = 0x02 ``` now I have a...
If I exec `export PYUSB_DEBUG=debug` before launching the command I can retrieve more information. Please be patient I'm learning...
I think I have the same problem ``` use Kodeine\Acl\Traits\HasRole; class User extends Model implements AuthenticatableContract, AuthorizableContract, CanResetPasswordContract { use Authenticatable, Authorizable, CanResetPassword, HasRole; ``` in php artisan tinker I've...
Like i've said i've solved using this in class User, I don't know if is the best solution but works ``` use Authenticatable, Authorizable, CanResetPassword, HasRole { HasRole::can insteadof Authorizable;...
remember to `use Nayjest\Grids\ObjectDataRow;` then ```php ->setCallback(function ($val, ObjectDataRow $dr) { // value of the cell // $val // all data row // $data= $dr->getSrc(); // row id $id= $dr->getId();...
this will help a lot
you can use something like ```php (new FilterConfig) ->setFilteringFunc(function ($val, EloquentDataProvider $provider) { $provider->getBuilder()->where('first_field, '=', $val)..... }), ``` I've not not tested this solution (maybe some problem if there are...
You can use ``` getId() ``` > It's row number starting from 1, considering pagination. from `DataRow.php`