Hello.
I got a strange issu with datagrid or something wrong...
I have index.php, it's a simple file and I use require_once("includes/_pages/themeframe/frame_e.php");
frame_e.php file include the file mainbody.php and in this file I retreive the var that I set in the url and I do a switch that will select the proper body file.
include_once(_pages."modules/mainheader.php");
include_once(_pages."modules/mainbody.php");
I use this method because I may use different body and header for futur theming purpose.
for now everything is right.
here the code.
Index.php
And the frame_e.php
Here the mainbody.php
Everything seem to work, only the datatable. here the url example.
http://debugger.ca/mc/mcadmin/ <- work right
if I include parameter
http://debugger.ca/mc/mcadmin/index.php?section=mainbody_cmd
http://debugger.ca/mc/mcadmin/index.php?section=mainbody_clients <- seem ok
in firefox the grid reload itself
in IE seem to work right
in Chrome do the same thing as FF
note that there's no postback, that make the grid repeat.
thanks for your help.
I got a strange issu with datagrid or something wrong...
I have index.php, it's a simple file and I use require_once("includes/_pages/themeframe/frame_e.php");
frame_e.php file include the file mainbody.php and in this file I retreive the var that I set in the url and I do a switch that will select the proper body file.
include_once(_pages."modules/mainheader.php");
include_once(_pages."modules/mainbody.php");
I use this method because I may use different body and header for futur theming purpose.
for now everything is right.
here the code.
Index.php
<?php require_once("includes/initPHP.php"); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>test site</title> <?php require_once("includes/initJS.php"); ?> </head> <?php require_once("includes/_pages/themeframe/frame_e.php"); ?> </html>
And the frame_e.php
<body style="background: url(img/degrade2.jpg) #ebedee repeat-x left top;"> <div class="middle"> <div style="width:1000px;margin-left:auto;margin-right:auto;"><?php include_once(_pages."modules/mainheader.php"); ?></div> <div style="width:1000px;margin-left:auto;margin-right:auto;"><?php include_once(_pages."modules/mainbody.php"); ?></div> </div> </body>
Here the mainbody.php
<?php if (isset($_GET['section'])) { $section = $_GET['section']; }else { $section = "mainbody_cmd"; //default } switch($section) { case "mainbody_cmd": include_once(_pages."modules/mainbody_cmd.php"); break; case "mainbody_clients": include_once(_pages."modules/mainbody_clients.php"); break; } $section = ""; ?>
Everything seem to work, only the datatable. here the url example.
http://debugger.ca/mc/mcadmin/ <- work right
if I include parameter
http://debugger.ca/mc/mcadmin/index.php?section=mainbody_cmd
http://debugger.ca/mc/mcadmin/index.php?section=mainbody_clients <- seem ok
in firefox the grid reload itself
in IE seem to work right
in Chrome do the same thing as FF
note that there's no postback, that make the grid repeat.
thanks for your help.