Welcome Guest, Not a member yet? Register   Sign In
2 templates are interfering
#1

(This post was last modified: 07-31-2020, 06:31 AM by richb201.)

I have used ci_synchronicity for a few years on my web app and it works well. I am now using AmazingTemplate which is part of Koolreport and there seems to be a "collision" between the two templates. This is how I am trying to get them both to appear in the same html page:
public function report_generator_amazing()
{
    $this->output->set_template('amazing');   <<this is for amazing
    $this->output->set_template('default2');    <<this is synchronicity

  $report= new MyDashboard;
  $report->run()->render();
}

 This causes both the banner from synchronicity and the dashboard icons from amazing to not appear correctly.  I use xdebug pretty extensively. I'd like to create an extra template called default2_amazing that plays nicely with Amazing. 

I know nothing about templates.  Is there any document which describes how templates work?
proof that an old dog can learn new tricks
Reply
#2

Did you try the output buffering?

PHP Code:
ob_start();

// Your Code

ob_end_flush(); 
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#3

same result.
proof that an old dog can learn new tricks
Reply
#4

(This post was last modified: 07-31-2020, 05:30 PM by richb201.)

Thanks again Insite. I managed to get around the issue by creating a faux black banner. I will just display this on top of the page in the same place where the real menu/banner appears on the rest of the application.
proof that an old dog can learn new tricks
Reply




Theme © iAndrew 2016 - Forum software by © MyBB