Austin Bischoff

Results 32 comments of Austin Bischoff

Example router call ``` router.post('/my/path', [ require('permission')(['admin', 'manage']), check('name', 'Name is required').trim().exists(), check('alias', 'Alias is required').trim().exists(), check('param_data', 'One or more parameters are missing'). trim(). exists(). custom((value, { req }) =>...

After a little more digging it looks like the behavior of `trim()` was changed from 5.3.1 to 6.0 which is causing the issue. Not sure if `trim()` did anything to...

@gustavohenke That makes sense. I did not find any docs on how to trim elements in a form array directly. I assume a custom sanitizer is required to iterate over...

Appears the behavior was changed a bit ago which disables the short cut key. There is an option now `{inlineFilters: true}` which will enable the short cut filters (ctrl/cmd+f).

Sorry for the delayed test, been on other projects. I got back to this and downloaded 5.5.0 via the download link on the main site. Exporting looks good for the...

I just tried using the currency formater and defining it to look like a percentage. It seems to work better but the same issue with random values being strings still...

I downloaded the version from github for 5.5.1 and it seems to be the same as above. It all works except the random percentage formatting issuer. Thanks again.

Also this same issue occurs in the generated UsersController.php file in the function store(). Adding the following line ``` php $user = (object) $user->toArray(); ``` after ``` php if ($user->id)...

@hotmeteor The issue with that pull request (#502) is you have to pull the Lang part out as well. The same issue as with the User as it cant rebuild...

Closing. If this still needs to be added please create a new issue with updated server information to test against.