Welcome Guest, Not a member yet? Register   Sign In
AjaxFw (CJAX) not functionning
#7

[eluser]brizoo[/eluser]
This is what I havn't understand I think.

For example, in my views I have a "partials" folder which contains my menus, footer, and my flashdatas.

What I mean by "flashdatas" is my returned messages.

For example in each pages, I include the view "flashdata" which read into the session to find if it exists any messages and display it.

This is the content of my view :

Code:
<?php defined('BASEPATH') OR exit('No direct script access allowed');

    $messages = $this->session->flashdata('message');
  
    if(isset($messages) and $messages != '')
    {
     if ( is_array($messages['text']))
     {
                foreach ($messages['text'] as $msg) {
      $ajax->warning($msg." Warning message...");
      //$this->firephp->warn($msg);
                }
     }
     else
     {
  $ajax->warning($messages['text']." Warning message...");
  //$this->firephp->warn($messages['text']);
     }

    }
?>

So if I understand properly, I should create an Ajax controller to manipulate this, and call it into this view by calling the url http://www.mydomain.com/ajaxcontroller.p.../variable2 .....

Am I right ?

Thanks


Messages In This Thread
AjaxFw (CJAX) not functionning - by El Forum - 12-28-2012, 06:45 AM
AjaxFw (CJAX) not functionning - by El Forum - 12-28-2012, 06:58 AM
AjaxFw (CJAX) not functionning - by El Forum - 12-29-2012, 12:54 PM
AjaxFw (CJAX) not functionning - by El Forum - 12-31-2012, 02:29 AM
AjaxFw (CJAX) not functionning - by El Forum - 12-31-2012, 04:52 AM
AjaxFw (CJAX) not functionning - by El Forum - 01-01-2013, 11:36 PM
AjaxFw (CJAX) not functionning - by El Forum - 01-02-2013, 01:51 AM
AjaxFw (CJAX) not functionning - by El Forum - 01-02-2013, 03:09 AM
AjaxFw (CJAX) not functionning - by El Forum - 01-02-2013, 03:35 AM
AjaxFw (CJAX) not functionning - by El Forum - 01-02-2013, 07:11 AM
AjaxFw (CJAX) not functionning - by El Forum - 01-09-2013, 07:28 AM
AjaxFw (CJAX) not functionning - by El Forum - 01-09-2013, 11:30 AM
AjaxFw (CJAX) not functionning - by El Forum - 01-09-2013, 11:52 PM



Theme © iAndrew 2016 - Forum software by © MyBB