Questions tagged as 'cakephp'

2
answers

Contain or join?

I have the following code: $contacts = $this->Contact->find('all', array( 'limit' => 20, 'contain' => array('Address', 'Phone' => array('fields' => 'Phone.phone' ), 'Campaign'), 'conditions' =>...
asked by 14.01.2015 / 16:47
1
answer

How to change the cakephp layout

I created a newsletter submission layout, called email.ctp , and put it inside the View / Layout directory. My question is how do I use this layout instead of the default.ctp     
asked by 18.12.2014 / 18:34
1
answer

CakeEmail sends email without message

I'm trying to make a form for sending an email. This is sent correctly and with the name of the person, which is inserted in the form, in the right place, in the subject of the email. However, neither the email that this person inserts, nor the...
asked by 17.04.2014 / 18:50
2
answers

Using Ajax in CakePHP 2.0

I can not use the normal Ajax syntax in CakePHP . I've seen a few things about JsHelper , but I can not do what I want. How can I call a action of controller by Ajax sending certain data and then receive the result of a...
asked by 27.02.2014 / 13:37
3
answers

Delete records without refreshing page

I'm trying to delete records without having to refresh the page, however I'm not having success, the records erase but the table only updates if I give an F5, I'm trying to do this via ajax but it's not rolling, can someone give me a light ? Her...
asked by 27.07.2017 / 02:34
1
answer

Save associations cakephp 3

I'm trying to save associated data in Cakephp 3, in the database I have two tables tabela entidades(id, nome_principal) and enderecos(id, entidade_id, cidade) In EntidadesTable I made the association: $this->hasMany(...
asked by 13.05.2017 / 23:48
1
answer

Set template variable [closed]

I need to define a variable that will be displayed in the footer of all my pages, that is, in the Cake 3 template. Any ideas?     
asked by 23.02.2017 / 12:44
2
answers

Make checkboxes selected, according to bank data!

As the code below, I need to make a table loaded with checked checkboxes, depending on the bank's data, for example: Destino _______________________________________ Origem | 1 | 2 | 3 | 4 | 5...
asked by 04.01.2017 / 18:08
1
answer

How to call an ACTION from a specific CONTROLLER via a Button?

Using the following code: $this->Html->link( 'Meus Dados', array( 'controller' => 'Groups', 'action' => 'index' ) ); The HTML link is created normally, but if...
asked by 19.12.2016 / 18:43
1
answer

CakePHP 3 - How to sum the values of the quantity column of several lines and show the result in the view?

I have Table Entradaestoques    id - prod - qtd       1 - soap - 10       2 - cloth - 7       3 - soap - 20       4 - disinfectant - 4       5 - soap - 20       6 - cloth - 3 I want to show in View    Soap: 50 uni...
asked by 10.11.2016 / 20:44