Posts by Rafael Batalha • 13 points
4 posts
-
-4
votes1
answer300
viewsQ: How do I send a single email to all administrators in Aravel 5.4?
I need to implement the sending of emails to a certain group of users, such as administrators, editors, reviewers. You’d have to use a queue for that or something like that? Anyway, I want to select…
-
1
votes2
answers3232
viewsA: Limiting text in CKEDITOR
The plugin wordcount of ckeditor has a parameter that limits the number of characters. Solve the problem as follows: showCharCount: true, maxCharCount: 10 Replace the value 10 with the number of…
-
1
votes3
answers62
viewsA: Fill in 3 selects without repetitions
$(document).ready(function () { $("#segunda_opcao").attr('disabled', true); $("#terceira_opcao").attr('disabled', true); $("#primeira_opcao").on("change", function () { var idPrimeiraOpcao =…
-
0
votes3
answers62
viewsQ: Fill in 3 selects without repetitions
Good night, In a view I need to fill 3 select without repeats. In the application form in a precise selection process that the student chooses in the first select the first course option, in the…