Posts by Marlon • 138 points
8 posts
-
0
votes1
answer1882
views -
2
votes2
answers121
viewsA: Wait or check append
I figured out a way to do the append for a div who uses overflow, down below: var intervalo = setInterval(function() { // Quando achar algo dentro da div if ($("div").children().length > 0) { //…
-
2
votes2
answers121
viewsQ: Wait or check append
I have a div that should make a append of some elements and, after that, should make a scroll until the end of it. The problem is that the scroll is executed before the append is finished. The…
-
1
votes1
answer70
viewsA: Bake cannot find model and controller files
Cake doesn’t use models or controllers to make Bake. Correct me if I’m wrong. What you need, after configuring the database.php file, is to mention the table in which you want to do Bake. In the…
-
3
votes2
answers191
viewsA: Displaying filter from another view
From what I understand, you don’t know the helpers. They facilitate code implementation, and do everything for you, passing php data and assembling the html structure with this data. I’m sorry if I…
-
2
votes3
answers1028
viewsA: Facilitation in PHP projects
I work with Sublime Text too. In the version I use, the 3 (yours is probably the same), just hover over a function and wait 1 to 2 seconds that a small pop-up with a list of files containing the…
-
1
votes0
answers53
viewsQ: Websocket and Cakephp
How to integrate Websocket into a Cakephp 1.2 system that runs on an Apache server with a Postgresql database? I need to chat, and all conversations will be saved in this bank, separated by system…
-
1
votes0
answers87
viewsQ: Chat in Cakephp
My colleague and I developed a chat in Cakephp 1.2 (the system is a bit old) using Ajax. But the only problem is that he needs to keep making requests to the database at all times, with a set…