# |
Dec 6th 2017, 10:24 |
joopm |
but not when i have deeper |
# |
Dec 6th 2017, 10:24 |
joopm |
the paginator magic working fine if it is woring with one level association |
# |
Dec 6th 2017, 10:24 |
hmic |
the paginator sort link you've shown does not give you the query param you are using in your order anyways! |
# |
Dec 6th 2017, 10:23 |
hmic |
let the paginator do its magic |
# |
Dec 6th 2017, 10:23 |
hmic |
and you dont need to pass the query param to the sort yourself |
# |
Dec 6th 2017, 10:23 |
hmic |
so you need to click the link 2 times for desc |
# |
Dec 6th 2017, 10:23 |
hmic |
it will toggle |
# |
Dec 6th 2017, 10:22 |
joopm |
okey if i remove the hard code i still only have asc direction |
# |
Dec 6th 2017, 10:22 |
hmic |
if you hardcode it, it will only use this. if not, it is a toggle switch |
# |
Dec 6th 2017, 10:22 |
hmic |
remove the hardcoded value |
# |
Dec 6th 2017, 10:22 |
joopm |
something like rsort in core php |
# |
Dec 6th 2017, 10:20 |
joopm |
how to force to change? |
# |
Dec 6th 2017, 10:20 |
joopm |
does not change |
# |
Dec 6th 2017, 10:20 |
joopm |
if i hard coded in the view ['direction' => 'desc'] than i have desc |
# |
Dec 6th 2017, 10:20 |
joopm |
everytime i have asc |
# |
Dec 6th 2017, 10:19 |
joopm |
->order([$this->request->query['sort']=>$this->request->query['direction']]) |
# |
Dec 6th 2017, 10:19 |
joopm |
thank you for help i have the following in the find method which is base of the paginate: |
# |
Dec 6th 2017, 10:18 |
hmic |
remove the hardcoded direction option from the link |
# |
Dec 6th 2017, 10:18 |
joopm |
doesnt change |
# |
Dec 6th 2017, 10:17 |
joopm |
but it is still remain asc |
# |
Dec 6th 2017, 10:17 |
hmic |
joopm, click the link again |
# |
Dec 6th 2017, 10:12 |
joopm |
i have oposite of the direction after sorting |
# |
Dec 6th 2017, 10:12 |
joopm |
i have this line in the view <?= $this->Paginator->sort('Tests.created',(__('created')),['direction' => 'asc']) ?> how can i arrange that |
# |
Dec 6th 2017, 10:10 |
saeideng |
solved |
# |
Dec 6th 2017, 10:08 |
saeideng |
manually |
# |
Dec 6th 2017, 10:08 |
saeideng |
how can I run App\\Console\\Installer::postInstall |
# |
Dec 6th 2017, 09:33 |
saeideng |
use water :-) |
# |
Dec 6th 2017, 09:31 |
saeideng |
:coffee: |
# |
Dec 6th 2017, 09:29 |
neon1024 |
It’s a shame we don’t have a decent coffee shop near our office |
# |
Dec 6th 2017, 09:28 |
neon1024 |
Yes, you can’t use a form inside a form |
# |
Dec 6th 2017, 09:28 |
neon1024 |
Morning |
# |
Dec 6th 2017, 09:28 |
neon1024 |
Yes, you can’t use a form inside a form |
# |
Dec 6th 2017, 09:28 |
neon1024 |
Lol |
# |
Dec 6th 2017, 09:07 |
saeideng |
not allowed to use a form inside other form in html |
# |
Dec 6th 2017, 09:06 |
saeideng |
i mean yes :slightly_smiling_face: |
# |
Dec 6th 2017, 09:06 |
danishkhan3621 |
Yes it is inside form |
# |
Dec 6th 2017, 09:05 |
saeideng |
no |
# |
Dec 6th 2017, 09:05 |
saeideng |
hmic |
# |
Dec 6th 2017, 09:04 |
hmic |
danishkhan3621: you cant use postlink inside a form |
# |
Dec 6th 2017, 09:02 |
danishkhan3621 |
<?php echo $this->Form->postLink(" ", ['controller' => 'Categories', 'action' => 'delete', $cat->category_id],['confirm'=> __('Are you sure you want to delete # {0}?', $cat->category_id),'class'=>'btn btn-danger btn-flat fa fa-trash','title'=>__('Delete')],array('escape' => false)) ?> |
# |
Dec 6th 2017, 09:02 |
danishkhan3621 |
I got this error : '_Token' was not found in request data when deleting Data using postLink does anyone know why this is causing problem |