Friday, September 26, 2014

Re: pass date as paramater in view

In the most simple example I can think of, for something like this:

http://www.mysite.com/lessons/dashboard4/2014-09-01
$this->Html->link('title', array('controller' => 'lessons', 'action' => 'dashboard4', $date);

$this->Html->link('title', array('controller' => 'lessons', 'action' => 'dashboard4', 'start' => $dateStart, 'end' => $dateEnd));


Personally I'd be more inclined to send search data via ajax with the use of an element that re-renders with the new query results on success, but that's just my 2 cents on search filters.

On 23 September 2014 13:15, ajt <jagguy999@gmail.com> wrote:
Hi,

How do I pass the date field below entered as a parameter so I can search the date?

echo $this->Form->input(
    'custom date',
    array(
        'type' => 'date',
        'selected' => array(
            'year'=>date('Y')
        ),
        'minYear' => date('Y') ,
        'maxYear' => date('Y') +1
    )
);

          echo  $this->Html->link($this->Html->tag('i', '', array('class' => 'icon-book','title'=>'Report')).'Custom Range', array(
         'controller' => 'lessons',  'action' => 'dashboard4'     ),array('escape'=>false,'class' => 'btn btn-small'));
 

--
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

---
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cake-php+unsubscribe@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php.
For more options, visit https://groups.google.com/d/optout.



--
Kind Regards
 Stephen Speakman

--
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

---
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cake-php+unsubscribe@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php.
For more options, visit https://groups.google.com/d/optout.

No comments: