Re: Slightly different models, merge or separate?

2012-06-26 Thread Raj Dudi
By model, I assume you mean table. Then I think it is nice to have two
table and have a foreign key to relate them. Also you can have many columns
in the second table so that it could address most of the data.
But yes, if you feel there will be many many columns then you may have more
table with association.

On Mon, Jun 25, 2012 at 10:12 AM, Poyan Nabati wrote:

> I have a question regarding more the design of the back-end rather than
> specifically how to implement it.
>
> I'm creating a life tracker of sorts. The purpose is to have a single
> application to help you keep track of things that are important to you long
> term.
>
> I want to be able to track a wide array of different things.
>
> For instance;
>
>
>- What type of exercise did I do? (Fixed: Gym, Running or Other)
>- Did I meditate today? (Boolean measurement)
>- What was my weight today? (Numeric measurement)
>- What's one good thing about today? (String "measurement")
>
> So for each goal you have a single specific type of measurements.
>
> *How should I implement this on the backend?*
>
>
>- *Two models.* I thought of having two models, Goal and Measurement,
>where Measurement has a corresponding field in the database called "value"
>that's agnostic of it's contents (in other words, a VARCHAR that I
>interpret differently depending on context). I believe, however, that this
>approach will create a lot of special code for each of the different cases
>down the line.
>- *Many models.* Another way to do it would be to create
>NumericMeasurement, BooleanMeasurement etc etc for each of the different
>measurement-types. In Goal I could have a field that indicates the type and
>create the association Goal hasMany (each of the measurement types). Do you
>see any problems with this approach?
>
> Is there another, better approach that I haven't thought about?
>
> How would you solve this?
>
> --
> Our newest site for the community: CakePHP Video Tutorials
> http://tv.cakephp.org
> Check out the new CakePHP Questions site http://ask.cakephp.org and help
> others with their CakePHP related questions.
>
>
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com For more options, visit this group
> at http://groups.google.com/group/cake-php
>

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: Passing each record of array to other view

2012-06-26 Thread Raj Dudi
May be you want to use foreach and then set with variable as data[i] so
that it is available in view seperatly

On Tue, Jun 26, 2012 at 11:43 AM, Roshan  wrote:

> Hi I have received the following array as a result of var_dump($x).
>
> array(2) {
> [0]=> array(1)
> { ["Driver"]=> array(13)
> { ["driver_id"]=> string(1) "4" ["fname"]=> string(13)
> "jack williams"
>   ["gender"]=> string(4) "male" ["email"]=> string(12)
> "j...@msn.com"
>   ["state"]=> string(7) "florida" ["city"]=>
> string(17) "Altamonte Springs"
>   ["zipcode"]=> string(6) "451456" ["address"]=>
> string(14) "st xena street"
>   ["phone_no"]=> string(9) "984568745" ["car_type"]=>
> string(6) "Luxury"
>   ["hourly_rate"]=> string(2) "45" ["occasion"]=>
> string(8) "marriage"
>   ["driver_image"]=> string(0) ""
> }
> }
> [1]=> array(1)
> { ["Driver"]=> array(13)
> { ["driver_id"]=> string(1) "5" ["fname"]=> string(14)
> "Peter Gonzalez"
>   ["gender"]=> string(4) "male" ["email"]=> string(15)
> "pe...@gmail.com"
>   ["state"]=> string(7) "Florida" ["city"]=>
> string(17) "Altamonte Springs"
>   ["zipcode"]=> string(6) "451456" ["address"]=>
> string(22) "626 Kennedy St Jackson"
>   ["phone_no"]=> string(14) "(941) 866-0530"
> ["car_type"]=> string(6) "Luxury"
>   ["hourly_rate"]=> string(2) "41" ["occasion"]=>
> string(8) "marriage"
>   ["driver_image"]=> string(0) ""
> }
> }
>  }
>
> Now I want to pass each record one by one to 'view2.ctp'.
> Anybody can explain me?
>
> --
> Our newest site for the community: CakePHP Video Tutorials
> http://tv.cakephp.org
> Check out the new CakePHP Questions site http://ask.cakephp.org and help
> others with their CakePHP related questions.
>
>
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com For more options, visit this group
> at http://groups.google.com/group/cake-php
>

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: Upload file to server with cakephp 1.2

2012-06-26 Thread Raj Dudi
Error and your code please

On Tue, Jun 26, 2012 at 12:02 PM, Mr. Manager  wrote:

> Dear All,
>
> I want to update file to server and save file name into table with cakephp
> 1.2. And I try to use many tutorials but it doesn't work.
>
> Thanks in advance!
>
> Sincerely Yours,
> Mr. Manager,
>
>
>  --
> Our newest site for the community: CakePHP Video Tutorials
> http://tv.cakephp.org
> Check out the new CakePHP Questions site http://ask.cakephp.org and help
> others with their CakePHP related questions.
>
>
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com For more options, visit this group
> at http://groups.google.com/group/cake-php
>

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: getting javascript helpers missing error.

2012-06-22 Thread Raj Dudi
Try echo $this->Html->script("jquery");
to load your jquery libraries in your view files.

On Fri, Jun 22, 2012 at 1:15 PM, shamsuddin mohammed <
mdshamsuddin@gmail.com> wrote:

> thanks i got it but the css is not working.
>
>
>
> with Regards,
>
>SHAMSUDDIN MOHD
> MCA
> Hyderabad
> Cell: +91- 9642955952, 8985188330
>
>
>
>
> On Fri, Jun 22, 2012 at 2:59 PM, Raj Dudi  wrote:
>
>> Yeah then in your articles controller, you should use helper as Js.Also
>> in index.php you should change $Javascript to $this->Js
>>
>>
>> On Fri, Jun 22, 2012 at 11:12 AM, shamsuddin mohammed <
>> mdshamsuddin@gmail.com> wrote:
>>
>>> yes i am using cakephp2. what should i do? shall i write Js inside of
>>> javascript.
>>>
>>>
>>> with Regards,
>>>
>>>SHAMSUDDIN MOHD
>>> MCA
>>> Hyderabad
>>> Cell: +91- 9642955952, 8985188330
>>>
>>>
>>>
>>>
>>> On Fri, Jun 22, 2012 at 2:38 PM, Raj Dudi  wrote:
>>>
>>>> What is the version of cakephp ? cakephp 2 do not have javascript
>>>> helper. cakephp2 has Js helper
>>>>
>>>> On Friday, 22 June 2012 11:00:40 UTC+2, shamsuddin mohammed wrote:
>>>>>
>>>>> i have written a controller ArticlesController.php with the following
>>>>> code
>>>>>
>>>>>
>>>>> >>>> class ArticlesController extends AppController {
>>>>> var $uses=null;
>>>>> var $name = 'Articles';
>>>>> var $helpers = array('Html','Form','**Javascript');
>>>>>
>>>>>  function index() {
>>>>>
>>>>>   $this->set('page_heading', 'Jquery Tab');
>>>>>
>>>>>}
>>>>>
>>>>> }
>>>>> ?>
>>>>>
>>>>> is it the right or not. if not how to include.
>>>>>
>>>>>
>>>>> with Regards,
>>>>>
>>>>>SHAMSUDDIN MOHD
>>>>>   **  MCA
>>>>>   **  Hyderabad
>>>>> Cell: +91- 9642955952, 8985188330
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> On Fri, Jun 22, 2012 at 1:54 PM, Raj Dudi wrote:
>>>>>
>>>>>> Also to include the Javascript library, you can use
>>>>>> echo $html->script("jquery);
>>>>>>
>>>>>> On Friday, 22 June 2012 10:22:27 UTC+2, Raj Dudi wrote:
>>>>>>>
>>>>>>> Hello,
>>>>>>>
>>>>>>> Which version of cakephp are you using ? If you are using cakephp2,
>>>>>>> then javascript helper is no more there and you should use Js helper.
>>>>>>> Also in your controller, you need to include these helpers. Your
>>>>>>> error indicates that you have not included the Js helper.
>>>>>>>
>>>>>>> // In controller
>>>>>>> public helpers = array('Js');
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> On Friday, 22 June 2012 08:22:31 UTC+2, shamsuddin mohammed wrote:
>>>>>>>>
>>>>>>>> i have downloaded jqueryui from the site and pasted javascript
>>>>>>>> files in js folder and css files in css folder next i have created a 
>>>>>>>> folder
>>>>>>>> called "article" in View and their i created index.php with the 
>>>>>>>> following
>>>>>>>> code.
>>>>>>>>
>>>>>>>> >>>>>>> $javascript->link('jquery-ui-**1**.8.21.custom.min.js', false);
>>>>>>>> $javascript->link('jquery.ui.**t**abs.js', false);
>>>>>>>> ?>
>>>>>>>> >>>>>>> />
>>>>>>>>
>>>>>>>>  
>>>>>>>>$(function() {
>>>>>>&g

Re: getting javascript helpers missing error.

2012-06-22 Thread Raj Dudi
Yeah then in your articles controller, you should use helper as Js.Also in
index.php you should change $Javascript to $this->Js

On Fri, Jun 22, 2012 at 11:12 AM, shamsuddin mohammed <
mdshamsuddin@gmail.com> wrote:

> yes i am using cakephp2. what should i do? shall i write Js inside of
> javascript.
>
>
> with Regards,
>
>SHAMSUDDIN MOHD
> MCA
> Hyderabad
> Cell: +91- 9642955952, 8985188330
>
>
>
>
> On Fri, Jun 22, 2012 at 2:38 PM, Raj Dudi  wrote:
>
>> What is the version of cakephp ? cakephp 2 do not have javascript helper.
>> cakephp2 has Js helper
>>
>> On Friday, 22 June 2012 11:00:40 UTC+2, shamsuddin mohammed wrote:
>>>
>>> i have written a controller ArticlesController.php with the following
>>> code
>>>
>>>
>>> >> class ArticlesController extends AppController {
>>> var $uses=null;
>>> var $name = 'Articles';
>>> var $helpers = array('Html','Form','**Javascript');
>>>
>>>  function index() {
>>>
>>>   $this->set('page_heading', 'Jquery Tab');
>>>
>>>}
>>>
>>> }
>>> ?>
>>>
>>> is it the right or not. if not how to include.
>>>
>>>
>>> with Regards,
>>>
>>>    SHAMSUDDIN MOHD
>>>   **  MCA
>>>   **  Hyderabad
>>> Cell: +91- 9642955952, 8985188330
>>>
>>>
>>>
>>>
>>> On Fri, Jun 22, 2012 at 1:54 PM, Raj Dudi  wrote:
>>>
>>>> Also to include the Javascript library, you can use
>>>> echo $html->script("jquery);
>>>>
>>>> On Friday, 22 June 2012 10:22:27 UTC+2, Raj Dudi wrote:
>>>>>
>>>>> Hello,
>>>>>
>>>>> Which version of cakephp are you using ? If you are using cakephp2,
>>>>> then javascript helper is no more there and you should use Js helper.
>>>>> Also in your controller, you need to include these helpers. Your error
>>>>> indicates that you have not included the Js helper.
>>>>>
>>>>> // In controller
>>>>> public helpers = array('Js');
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> On Friday, 22 June 2012 08:22:31 UTC+2, shamsuddin mohammed wrote:
>>>>>>
>>>>>> i have downloaded jqueryui from the site and pasted javascript files
>>>>>> in js folder and css files in css folder next i have created a folder
>>>>>> called "article" in View and their i created index.php with the following
>>>>>> code.
>>>>>>
>>>>>> >>>>> $javascript->link('jquery-ui-**1**.8.21.custom.min.js', false);
>>>>>> $javascript->link('jquery.ui.**t**abs.js', false);
>>>>>> ?>
>>>>>> 
>>>>>>
>>>>>>  
>>>>>>$(function() {
>>>>>>$("#tabs").tabs();
>>>>>>});
>>>>>> 
>>>>>>
>>>>>> 
>>>>>>
>>>>>> 
>>>>>> tabs-1
>>>>>> tabs-2
>>>>>> tabs-3
>>>>>> 
>>>>>> 
>>>>>>
>>>>>> Tab 1. This is demo text. This is demo text.This is demo
>>>>>> text.This is demo text.This is demo text.This is demo text.This is demo
>>>>>> text.This is demo text.This is demo text.
>>>>>> 
>>>>>> 
>>>>>> Tab 2. This is demo text.This is demo text.This is demo
>>>>>> text.This is demo text.This is demo text.This is demo text.This is demo
>>>>>> text.This is demo text.This is demo text.
>>>>>> 
>>>>>> 
>>>>>>
>>>>>> Tab 3.This is demo text.This is demo text.This is demo
>>>>>> text.This is demo text.This is demo text.This is demo text.This is demo
>>>>>> text.This is demo text.This is demo text.
>>>>>> 
>>>>>> 
>>>>>>

Re: getting javascript helpers missing error.

2012-06-22 Thread Raj Dudi
What is the version of cakephp ? cakephp 2 do not have javascript helper. 
cakephp2 has Js helper 

On Friday, 22 June 2012 11:00:40 UTC+2, shamsuddin mohammed wrote:
>
> i have written a controller ArticlesController.php with the following code
>
>
>  class ArticlesController extends AppController {
> var $uses=null;
> var $name = 'Articles';
> var $helpers = array('Html','Form','Javascript'); 
>
>  function index() {
>
>   $this->set('page_heading', 'Jquery Tab');   
>
>}
>
> }
> ?>
>
> is it the right or not. if not how to include. 
>
>
> with Regards,
>
>SHAMSUDDIN MOHD
>         MCA
> Hyderabad
> Cell: +91- 9642955952, 8985188330
>
>
>
>
> On Fri, Jun 22, 2012 at 1:54 PM, Raj Dudi  wrote:
>
>> Also to include the Javascript library, you can use 
>> echo $html->script("jquery); 
>>
>> On Friday, 22 June 2012 10:22:27 UTC+2, Raj Dudi wrote:
>>>
>>> Hello,
>>>
>>> Which version of cakephp are you using ? If you are using cakephp2, then 
>>> javascript helper is no more there and you should use Js helper.
>>> Also in your controller, you need to include these helpers. Your error 
>>> indicates that you have not included the Js helper. 
>>>
>>> // In controller 
>>> public helpers = array('Js');
>>>
>>>
>>>
>>>
>>> On Friday, 22 June 2012 08:22:31 UTC+2, shamsuddin mohammed wrote:
>>>>
>>>> i have downloaded jqueryui from the site and pasted javascript files in 
>>>> js folder and css files in css folder next i have created a folder called 
>>>> "article" in View and their i created index.php with the following code.
>>>>
>>>> >>> $javascript->link('jquery-ui-**1.8.21.custom.min.js', false);
>>>> $javascript->link('jquery.ui.**tabs.js', false);
>>>> ?>
>>>> 
>>>>
>>>>  
>>>>$(function() {
>>>>$("#tabs").tabs();
>>>>});
>>>> 
>>>>
>>>> 
>>>>
>>>> 
>>>> tabs-1
>>>> tabs-2
>>>> tabs-3
>>>> 
>>>> 
>>>>
>>>> Tab 1. This is demo text. This is demo text.This is demo 
>>>> text.This is demo text.This is demo text.This is demo text.This is demo 
>>>> text.This is demo text.This is demo text.
>>>> 
>>>> 
>>>> Tab 2. This is demo text.This is demo text.This is demo 
>>>> text.This is demo text.This is demo text.This is demo text.This is demo 
>>>> text.This is demo text.This is demo text.
>>>> 
>>>> 
>>>>
>>>> Tab 3.This is demo text.This is demo text.This is demo 
>>>> text.This is demo text.This is demo text.This is demo text.This is demo 
>>>> text.This is demo text.This is demo text.
>>>> 
>>>> 
>>>>
>>>>
>>>> when i run this i am getting the following error:
>>>>
>>>> Missing Helper 
>>>>
>>>> *Error: * *JavascriptHelper* could not be found.
>>>>
>>>> *Error: * Create the class *JavascriptHelper* below in file: 
>>>> app\View\Helper\**JavascriptHelper.php
>>>>
>>>> >>> class JavascriptHelper extends AppHelper {
>>>>
>>>> }
>>>>
>>>>  *Notice: * If you want to customize this error message, create 
>>>> app\View\Errors\missing_**helper.ctp
>>>> Stack Trace 
>>>>
>>>>- CORE\Cake\View\View.php line 850 <http://localhost/cake/articles#>→ 
>>>> HelperCollection->load(string, 
>>>>array) <http://localhost/cake/articles#> 
>>>>- CORE\Cake\View\View.php line 456 <http://localhost/cake/articles#>→ 
>>>>View->loadHelpers() <http://localhost/cake/articles#> 
>>>>- CORE\Cake\Controller\**Controller.php line 
>>>> 959<http://localhost/cake/articles#>→ View->render(null, 
>>>>null) <http://localhost/cake/articles#> 
>>>>- CORE\Cake\Routing\Dispatcher.**php line 
>>>> 110<http://localhost/cake/articles#

Re: getting javascript helpers missing error.

2012-06-22 Thread Raj Dudi
Also to include the Javascript library, you can use 
echo $html->script("jquery); 

On Friday, 22 June 2012 10:22:27 UTC+2, Raj Dudi wrote:
>
> Hello,
>
> Which version of cakephp are you using ? If you are using cakephp2, then 
> javascript helper is no more there and you should use Js helper.
> Also in your controller, you need to include these helpers. Your error 
> indicates that you have not included the Js helper. 
>
> // In controller 
> public helpers = array('Js');
>
>
>
>
> On Friday, 22 June 2012 08:22:31 UTC+2, shamsuddin mohammed wrote:
>>
>> i have downloaded jqueryui from the site and pasted javascript files in 
>> js folder and css files in css folder next i have created a folder called 
>> "article" in View and their i created index.php with the following code.
>>
>> > $javascript->link('jquery-ui-1.8.21.custom.min.js', false);
>> $javascript->link('jquery.ui.tabs.js', false);
>> ?>
>> 
>>
>>  
>>$(function() {
>>$("#tabs").tabs();
>>});
>> 
>>
>> 
>>
>> 
>> tabs-1
>> tabs-2
>> tabs-3
>> 
>> 
>>
>> Tab 1. This is demo text. This is demo text.This is demo 
>> text.This is demo text.This is demo text.This is demo text.This is demo 
>> text.This is demo text.This is demo text.
>> 
>> 
>> Tab 2. This is demo text.This is demo text.This is demo 
>> text.This is demo text.This is demo text.This is demo text.This is demo 
>> text.This is demo text.This is demo text.
>> 
>> 
>>
>> Tab 3.This is demo text.This is demo text.This is demo 
>> text.This is demo text.This is demo text.This is demo text.This is demo 
>> text.This is demo text.This is demo text.
>> 
>> 
>>
>>
>> when i run this i am getting the following error:
>>
>> Missing Helper 
>>
>> *Error: * *JavascriptHelper* could not be found.
>>
>> *Error: * Create the class *JavascriptHelper* below in file: 
>> app\View\Helper\JavascriptHelper.php
>>
>> > class JavascriptHelper extends AppHelper {
>>
>> }
>>
>>  *Notice: * If you want to customize this error message, create 
>> app\View\Errors\missing_helper.ctp
>> Stack Trace 
>>
>>- CORE\Cake\View\View.php line 850 <http://localhost/cake/articles#>→ 
>> HelperCollection->load(string, 
>>array) <http://localhost/cake/articles#> 
>>- CORE\Cake\View\View.php line 456 <http://localhost/cake/articles#>→ 
>>View->loadHelpers() <http://localhost/cake/articles#> 
>>- CORE\Cake\Controller\Controller.php line 
>> 959<http://localhost/cake/articles#>→ View->render(null, 
>>null) <http://localhost/cake/articles#> 
>>- CORE\Cake\Routing\Dispatcher.php line 
>> 110<http://localhost/cake/articles#>→ 
>>Controller->render() <http://localhost/cake/articles#> 
>>- CORE\Cake\Routing\Dispatcher.php line 
>> 85<http://localhost/cake/articles#>→ Dispatcher->_invoke(ArticlesController, 
>>CakeRequest, CakeResponse) <http://localhost/cake/articles#> 
>>- APP\webroot\index.php line 96 <http://localhost/cake/articles#> → 
>> Dispatcher->dispatch(CakeRequest, 
>>CakeResponse) <http://localhost/cake/articles#>
>>
>>
>> what i have to do. please tell me.
>>
>>
>> On Thursday, 21 June 2012 18:37:43 UTC+5:30, Raj Dudi wrote:
>>>
>>> @Shamsuddin : Posting a tutorial is not possibleplease specify, what 
>>> you have done and where you are getting problem
>>>
>>> On Thursday, 21 June 2012 06:53:39 UTC+2, shamsuddin mohammed wrote:
>>>>
>>>> hi all  i am new to cakephp, i am getting an error while using jqueryui 
>>>> tabs. could any one please tell me how to use jqueryui tabs in cakephp. 
>>>>
>>>>
>>>>
>>>>
>>>> Thanks in advance.
>>>> --shamsuddin
>>>>
>>>

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: getting javascript helpers missing error.

2012-06-22 Thread Raj Dudi
Hello,

Which version of cakephp are you using ? If you are using cakephp2, then 
javascript helper is no more there and you should use Js helper.
Also in your controller, you need to include these helpers. Your error 
indicates that you have not included the Js helper. 

// In controller 
public helpers = array('Js');




On Friday, 22 June 2012 08:22:31 UTC+2, shamsuddin mohammed wrote:
>
> i have downloaded jqueryui from the site and pasted javascript files in js 
> folder and css files in css folder next i have created a folder called 
> "article" in View and their i created index.php with the following code.
>
>  $javascript->link('jquery-ui-1.8.21.custom.min.js', false);
> $javascript->link('jquery.ui.tabs.js', false);
> ?>
> 
>
>  
>$(function() {
>$("#tabs").tabs();
>});
> 
>
> 
>
> 
> tabs-1
> tabs-2
> tabs-3
> 
> 
>
> Tab 1. This is demo text. This is demo text.This is demo 
> text.This is demo text.This is demo text.This is demo text.This is demo 
> text.This is demo text.This is demo text.
> 
> 
> Tab 2. This is demo text.This is demo text.This is demo 
> text.This is demo text.This is demo text.This is demo text.This is demo 
> text.This is demo text.This is demo text.
> 
> 
>
> Tab 3.This is demo text.This is demo text.This is demo 
> text.This is demo text.This is demo text.This is demo text.This is demo 
> text.This is demo text.This is demo text.
> 
> 
>
>
> when i run this i am getting the following error:
>
> Missing Helper 
>
> *Error: * *JavascriptHelper* could not be found.
>
> *Error: * Create the class *JavascriptHelper* below in file: 
> app\View\Helper\JavascriptHelper.php
>
>  class JavascriptHelper extends AppHelper {
>
> }
>
>  *Notice: * If you want to customize this error message, create 
> app\View\Errors\missing_helper.ctp
> Stack Trace 
>
>- CORE\Cake\View\View.php line 850 <http://localhost/cake/articles#> → 
> HelperCollection->load(string, 
>array) <http://localhost/cake/articles#> 
>- CORE\Cake\View\View.php line 456 <http://localhost/cake/articles#> → 
>View->loadHelpers() <http://localhost/cake/articles#> 
>- CORE\Cake\Controller\Controller.php line 
> 959<http://localhost/cake/articles#>→ View->render(null, 
>null) <http://localhost/cake/articles#> 
>- CORE\Cake\Routing\Dispatcher.php line 
> 110<http://localhost/cake/articles#>→ 
>Controller->render() <http://localhost/cake/articles#> 
>- CORE\Cake\Routing\Dispatcher.php line 
> 85<http://localhost/cake/articles#>→ Dispatcher->_invoke(ArticlesController, 
>CakeRequest, CakeResponse) <http://localhost/cake/articles#> 
>- APP\webroot\index.php line 96 <http://localhost/cake/articles#> → 
> Dispatcher->dispatch(CakeRequest, 
>CakeResponse) <http://localhost/cake/articles#>
>
>
> what i have to do. please tell me.
>
>
> On Thursday, 21 June 2012 18:37:43 UTC+5:30, Raj Dudi wrote:
>>
>> @Shamsuddin : Posting a tutorial is not possibleplease specify, what 
>> you have done and where you are getting problem
>>
>> On Thursday, 21 June 2012 06:53:39 UTC+2, shamsuddin mohammed wrote:
>>>
>>> hi all  i am new to cakephp, i am getting an error while using jqueryui 
>>> tabs. could any one please tell me how to use jqueryui tabs in cakephp. 
>>>
>>>
>>>
>>>
>>> Thanks in advance.
>>> --shamsuddin
>>>
>>

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: getting javascript helpers missing error.

2012-06-21 Thread Raj Dudi
@Shamsuddin : Posting a tutorial is not possibleplease specify, what 
you have done and where you are getting problem

On Thursday, 21 June 2012 06:53:39 UTC+2, shamsuddin mohammed wrote:
>
> hi all  i am new to cakephp, i am getting an error while using jqueryui 
> tabs. could any one please tell me how to use jqueryui tabs in cakephp. 
>
>
>
>
> Thanks in advance.
> --shamsuddin
>

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: getting javascript helpers missing error.

2012-06-21 Thread Raj Dudi
@Shamsuddin : Posting a tutorial is not possibleplease specify, what
you have done and where you are getting problem

On Thu, Jun 21, 2012 at 6:53 AM, shamsuddin mohammed <
mdshamsuddin@gmail.com> wrote:

> hi all  i am new to cakephp, i am getting an error while using jqueryui
> tabs. could any one please tell me how to use jqueryui tabs in cakephp.
>
>
>
>
> Thanks in advance.
> --shamsuddin
>
> --
> Our newest site for the community: CakePHP Video Tutorials
> http://tv.cakephp.org
> Check out the new CakePHP Questions site http://ask.cakephp.org and help
> others with their CakePHP related questions.
>
>
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com For more options, visit this group
> at http://groups.google.com/group/cake-php
>

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php