Posts by Luiz Felipe Burgatt Jolo • 9 points
3 posts
-
0
votes1
answer68
viewsA: Change one Select from another by triggering the second’s "onChange" event using JS
function selectDepositoPadrao(event){ $(event).closest('.form-std') .find('.deposito') .each(function(idx,item){ $(item).children().each(function(idxOpt, itemOpt){ if ($(itemOpt).val() !==…
-
-1
votes1
answer68
viewsQ: Change one Select from another by triggering the second’s "onChange" event using JS
I have two problems, I made a function to check by the class of selects all your children in the block, so when I change the first option has to change all the others in cascade. Problems: (1) ->…
-
1
votes1
answer169
viewsQ: How to use make:request Laravel to clear the controller
Laravel 5.5 I am using the validations as follows, directly in the controller $this->validate($req,[ 'nome' => 'required|min:10', 'cpf' => 'required|size:14', 'agencia' => 'required',…