Posts by FernandoPaiva • 1,562 points
111 posts
-
1
votes1
answer87
viewsQ: Link to cakephp within jquery?
How to create a link using Cakephp conventions within Jquery ? I’m trying like this but I still can’t make it work. $(document).ready(function() { $('#dataTables-example').DataTable({ "processing":…
-
1
votes1
answer431
viewsQ: Using Jquery Datatable with Cakephp?
I’m trying to use Jquery Datatable server-side with Cakephp but I’m not getting it. I am looking for some example for this but not yet found. When running Datatable Jquery returns an error: Uncaught…
-
2
votes1
answer94
viewsQ: Cakephp Submit form using Jquery?
I have a form in Cakephp and I want to make the Submit of this form using Jquery. I’m looking for a solution on how to do this without using Cakephp’s Jshelper, I want to use only the same native…
-
1
votes0
answers158
viewsQ: How to access xampp page remotely?
I installed XAMPP on a Win2008 server R2 server in my work and released ports 80 and 443 in the firewall, the server is working fine. Now I need to access the XAMPP page remotely from my local…
-
1
votes2
answers816
viewsQ: Create Jsonarray with objects?
I have 2 classes: Venda and ItemVenda. I want to create a Jsonarray with all my sales and your items. I’m trying to use Jsonobject with Jsonarray to create this but I’m not getting it done. For…
javaasked FernandoPaiva 1,562 -
1
votes0
answers87
viewsQ: Creating an infinite Listview?
I’m trying to create an infinite Listview to go looking for information on my web service from 10 to 10. For this I am trying to use this example:…
-
1
votes0
answers26
viewsQ: Push Notification opening new copy of the app?
I’m trying to create a push notification but push always opens a copy of the application and I want it to open my application again if it is in the background. How to do this ? I’m trying like this…
androidasked FernandoPaiva 1,562 -
1
votes1
answer34
viewsQ: You doubt conditions in cakephp?
I’m trying to make a conditions in a find. I have 2 tables: tipopessoas and pessoas, on the table pessoas I have a foreign key for table tipopessoas. I want my find to bring the result only to two…
-
2
votes1
answer229
viewsA: How to make two relationships for the same table?
Solved I did so. Controller public function add() { if ($this->request->is('post')) { $this->Advertencia->create(); //seta valores para pessoas $this->Advertencia->set(array(…
-
1
votes1
answer229
viewsQ: How to make two relationships for the same table?
I have a table called advertencias, in this table I have 2 Foreign key for the same table called pessoas in this table person I have two types of person Student and Teacher, then in the table…
-
0
votes1
answer226
viewsQ: How do JOIN using find()?
I am trying to Join tables using cakephp find(). I have 3 tables, they are: users, pessoas e matriculas. On the table users i have a foreign key for table pessoas and in the table matriculas I have…