Posts by kernel.panic • 31 points
2 posts
-
2
votes1
answer165
viewsA: modify Chosen and ckeditor
To change the data-placeholder, use the .data() jquery: $('#cd_aluno').data('placeholder', 'novo valor'); To disable the Ckeditor (make it read-only), you can configure it on startup by setting the…
-
1
votes1
answer834
viewsA: Buttons with HTTP Request Action
To achieve this, it is interesting to send the data via AJAX to the server in nodejs. You will probably end up opting for some framework, but for exercise, it is worth seeing how it is done at hand.…