Welcome Guest, Not a member yet? Register   Sign In
Template controller to grocery CRUD?
#13

[eluser]a/\ekc[/eluser]
Quote:a/\ekc This is why I'm having this poll :-) . Probably in the next version (1.1) I will remove the two libraries so the users will be more flexible as you said. The next version (probably) will work with views so this will make it automatically more flexible.

As for me, there was no problem put grocery CRUD dataset in my view
I did in version 1.0.3 so (experimental)

I had only MY_Loader.php (without MY_Output.php)

in controller
Code:
function test_crud_in_view(){

        $this->load->add_package_path(APPPATH.'third_party/grocery_crud/');
       // remove all output
       // $this->output->set_template('custom_cms');
        $this->load->library('grocery_CRUD');
      
        $crud = new grocery_CRUD();
        
        $crud->set_table('test_table');
        
        //remove render to avoid echo cruddataset before all view content
        //$crud->render();

        $data[$crud] = &$crud;
        $this->load->view('template',$data);

}

so in view/template.php

Code:
<?php
//template with CRUD
$this->load->view('header');  

if (isset($content)) echo $content;
//render CRUD if needed
if (isset($crud) && is_object($crud)))
$crud->render();

$this->load->view('footer');
?>

and so only one problem exists to quickly get correct CSS and JavaScript libraries for concrete theme
And i think this is your development priority ;-)


Messages In This Thread
Template controller to grocery CRUD? - by El Forum - 06-13-2011, 05:26 AM
Template controller to grocery CRUD? - by El Forum - 06-13-2011, 09:43 PM
Template controller to grocery CRUD? - by El Forum - 06-13-2011, 10:34 PM
Template controller to grocery CRUD? - by El Forum - 06-14-2011, 10:42 AM
Template controller to grocery CRUD? - by El Forum - 06-14-2011, 12:11 PM
Template controller to grocery CRUD? - by El Forum - 06-14-2011, 07:09 PM
Template controller to grocery CRUD? - by El Forum - 06-14-2011, 11:32 PM
Template controller to grocery CRUD? - by El Forum - 06-15-2011, 08:03 AM
Template controller to grocery CRUD? - by El Forum - 06-15-2011, 09:52 PM
Template controller to grocery CRUD? - by El Forum - 06-15-2011, 11:20 PM
Template controller to grocery CRUD? - by El Forum - 06-15-2011, 11:29 PM
Template controller to grocery CRUD? - by El Forum - 06-16-2011, 12:24 AM
Template controller to grocery CRUD? - by El Forum - 06-16-2011, 01:00 AM
Template controller to grocery CRUD? - by El Forum - 06-16-2011, 11:01 AM
Template controller to grocery CRUD? - by El Forum - 06-17-2011, 12:52 AM
Template controller to grocery CRUD? - by El Forum - 06-17-2011, 01:01 AM
Template controller to grocery CRUD? - by El Forum - 06-17-2011, 09:13 PM
Template controller to grocery CRUD? - by El Forum - 06-18-2011, 06:00 AM



Theme © iAndrew 2016 - Forum software by © MyBB