Welcome Guest, Not a member yet? Register   Sign In
CodeIgniter HMVC : [again] Multiple View Problems
#1

[eluser]Unknown[/eluser]
Hi Guys,

I'm using Wiredesign HMVC, but I got a problem with multiple view.
the view not showing in the right place.

Any comments/suggestions welcomed

Dashboard - Controller
Code:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Dashboard extends MX_Controller {

    public function index( )
    {
        $this->load->view('dahboard_main_view');
    }
}

Dashboard - Views
Code:
<html>
<head>Test Page</head>
<body>
        <div class="container">
            <div class="row">
                &lt;?php foreach ($plugins as $row) : ?&gt;
                <div class="span3">&lt;?php echo Modules::run($row.'/widget'); ?&gt;</div>
                &lt;?php endforeach; ?&gt;
            </div>
        </div>
&lt;/body&gt;
&lt;/html&gt;

Browser Source Code - Dashboard
Code:
<div class="widget01">
    <table>
        <tr>
            <th>No</th><th>Requestor</th><th>Action</th>
        </tr>
        <tr>
            <td>1</td><td>Name 01</td><td>Not Yet</td>
        </tr>
        <tr>
            <td>2</td><td>Name 02</td><td>Created</td>
        </tr>
        <tr>
            <td>3</td><td>Name 03</td><td>Created</td>
        </tr>
    </table>
</div>

<div class="widget02">
    <table>
        <tr>
            <th>No</th><th>Requestor</th><th>Action</th>
        </tr>
        <tr>
            <td>1</td><td>Name 01</td><td>Not Yet</td>
        </tr>
        <tr>
            <td>2</td><td>Name 02</td><td>Created</td>
        </tr>
        <tr>
            <td>3</td><td>Name 03</td><td>Created</td>
        </tr>
    </table>
</div>

<!DOCTYPE html>
&lt;head&gt;Test Page&lt;/head&gt;
&lt;body&gt;
        <div class="container">
            <div class="row">
                      <div class="span3"></div>
                      <div class="span3"></div>
            </div>
        </div>
&lt;/body&gt;
&lt;/html&gt;

and now my widget table (example plugin) showing in the top of my page. not in the page body.


Thanks In advance
Sorry for my english.




Theme © iAndrew 2016 - Forum software by © MyBB