CakePHP 2.4.2 released

2013-10-22 Thread mark_story
The CakePHP core team is proud to announce the immediate availability of CakePHP 2.4.2[1]. 2.4.2 is a bugfix release for the 2.4 release branch. A short list of the changes you can expect is: * Sqlite::truncate() will verify that the sqlite_sequence table exists before modifying it. * Label ele

Re: problems saving datetime

2013-10-22 Thread CrotchFrog
I realize now that my original issue may not have been so much fetching data from the AppController but more so setting the data to be available in the view. To test I set a misc value *$this->set('variable', 'some data'); *in the beforeFilter() of the AppController. *$variable *is available in

Re: Multiple checkbox in one line

2013-10-22 Thread CrotchFrog
If I remember correctly Form->input is wrapped in a div. You can try styling the div through the input options array such as 'div' => 'CssClass' or remove the div entirely if it helps the cause, 'div' => false. You can change from a div to something like span using 'wrap' => 'span'. Use before/

Re: problems saving datetime

2013-10-22 Thread CrotchFrog
Problem solved, I worked out the issue. I have a few spots in my layout that display dynamic data and I usually use Jquery $('#element').load() to populate those spaces. I threw $this->News->get(); into the AppController beforeFilter to temporarily retrieve the needed data as I worked on stylin

GANTT for CakePHP ?

2013-10-22 Thread Frank Hassani
Hi, is there a gantt plugin around for cakephp ? Have googled it but didn't find any current project. Pls share, Regards, Frank -- 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 th

Re: My application using cakePHP

2013-10-22 Thread Frank Hassani
Hi, does this app have a current version that's in use ? Regards, Frank On Thursday, February 15, 2007 8:23:03 AM UTC+1, riky.ku...@gmail.com wrote: > > Hi there, > > I've worked application on my thesis. > > We build virtual office application using Cake. It has features such as > Timeline

Multiple checkbox in one line

2013-10-22 Thread Princess Erissa
Hi, I have a HABTM relationship between product and color. in Add Product form, I have this line. Form->input('Color', array('multiple'=>'checkbox'));?> But, the checkbox list is in vertical. and the list of color is so many and the user need to roll down the page more and more. What should i d