Advanced Module in a popup

Hi

I have a working advanced module I'd like to get to pop up in a window - inline_edit style. I can get it to do this but the whole Fuel interface appears rather than just the module's home page.

Any suggestions on what I can do?

The main module's controller is initialised using:
require_once(FUEL_PATH.'/controllers/Module.php');
class test_module extends Module {
...
}

Comments

  • OK. Got it.
    In the Controller function that creates the module's home page (form) add:
    $this->fuel->admin->set_inline(TRUE);

Sign In or Register to comment.