Posts by GPrimola • 151 points
3 posts
-
0
votes2
answers178
viewsA: Duck type in Elixir
The concept of Duck Typing is as follows: "if it makes Quack like a duck, then it’s a duck". This concept is widely used in languages with dynamic typing for code reuse (DRY - don’t repeat…
-
1
votes1
answer50
viewsA: Problem with Tinymce Rails
Darshan you’re probably using Tinymce in a modal, right? If yes, that’s why you need to start Tinymce by javascript in this modal, so that it searches the server for their JS and CSS dependencies…
-
1
votes1
answer1526
viewsA: Dynamic Table with Bootstrap and Jquery-wenzhixin
Dear Wesley, the table is not being built by Jquery. The fact that: var $table = $('#table'); is just selecting the element #table of GIFT. The code $table.bootstrapTable({...}); is calling the…