jeremy0616
29 Aug 2011, 8:03 PM
Please help;
I'm trying to open a window generated with Ext Designer into de tab of the api doc example.
Here is the code of the tree.js included in the example:
{"href":"LxTCViewer_window.php","text":"Visor Datos","id":"Visor","isClass":true,"iconCls":"icon-vwr","cls":"cls","leaf":true}
And the code of the php is this.
<?php
//--> Iniciar sesión
session_start();
if ((!isset($_SESSION['usuario'])) || (isset($_SESSION['usuario']) && $_SESSION['usuario'] == ""))
{
header('Location:../index.php?opcion=LOGIN');
}
if (!isset($_SESSION['procesa_accion']))
{
$_SESSION['procesa_accion'] = 0;
}
if (!isset($_SESSION['sql']))
{
$_SESSION['sql'] = "";
}
if (!isset($_SESSION['mensaje']))
{
$_SESSION['mensaje'] = "";
}
if (!isset($_SESSION['modulo']))
{
$_SESSION['modulo'] = "LxTC_Viewer";
}
else
{
$_SESSION['sql'] = "";
$_SESSION['mensaje'] = "";
$_SESSION['procesa_accion'] = 0;
$_SESSION['modulo'] = "LxTC_Viewer";
}
?>
<!DOCTYPE html>
<!-- Auto Generated with Ext Designer -->
<!-- Modifications to this file will be overwritten. -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>LxSagosViewer.xds</title>
<link rel="stylesheet" type="text/css" href="resources/css/ext-all.css"/>
<link rel="stylesheet" type="text/css" href="resources/ux/gridfilters/css/GridFilters.css" />
<link rel="stylesheet" type="text/css" href="resources/ux/gridfilters/css/RangeMenu.css" />
<script type="text/javascript" src="resources/ext-base.js"></script>
<script type="text/javascript" src="resources/ext-all.js"></script>
<!-- extensions -->
<script type="text/javascript" src="resources/ux/gridfilters/menu/RangeMenu.js"></script>
<script type="text/javascript" src="resources/ux/gridfilters/menu/ListMenu.js"></script>
<script type="text/javascript" src="resources/ux/gridfilters/GridFilters.js"></script>
<script type="text/javascript" src="resources/ux/gridfilters/filter/Filter.js"></script>
<script type="text/javascript" src="resources/ux/gridfilters/filter/StringFilter.js"></script>
<script type="text/javascript" src="resources/ux/gridfilters/filter/DateFilter.js"></script>
<script type="text/javascript" src="resources/ux/gridfilters/filter/ListFilter.js"></script>
<script type="text/javascript" src="resources/ux/gridfilters/filter/NumericFilter.js"></script>
<script type="text/javascript" src="resources/ux/gridfilters/filter/BooleanFilter.js"></script>
<script type="text/javascript" src="LxSagosVwWindow.ui.js"></script>
<script type="text/javascript" src="LxSagosVwWindow.js"></script>
<script type="text/javascript" src="lxsMarcajes.js"></script>
<script type="text/javascript" src="LxTCViewer_window_index.js"></script>
</head>
<body></body>
</html>
Hope someone can help me !!!!!!
I'm trying to open a window generated with Ext Designer into de tab of the api doc example.
Here is the code of the tree.js included in the example:
{"href":"LxTCViewer_window.php","text":"Visor Datos","id":"Visor","isClass":true,"iconCls":"icon-vwr","cls":"cls","leaf":true}
And the code of the php is this.
<?php
//--> Iniciar sesión
session_start();
if ((!isset($_SESSION['usuario'])) || (isset($_SESSION['usuario']) && $_SESSION['usuario'] == ""))
{
header('Location:../index.php?opcion=LOGIN');
}
if (!isset($_SESSION['procesa_accion']))
{
$_SESSION['procesa_accion'] = 0;
}
if (!isset($_SESSION['sql']))
{
$_SESSION['sql'] = "";
}
if (!isset($_SESSION['mensaje']))
{
$_SESSION['mensaje'] = "";
}
if (!isset($_SESSION['modulo']))
{
$_SESSION['modulo'] = "LxTC_Viewer";
}
else
{
$_SESSION['sql'] = "";
$_SESSION['mensaje'] = "";
$_SESSION['procesa_accion'] = 0;
$_SESSION['modulo'] = "LxTC_Viewer";
}
?>
<!DOCTYPE html>
<!-- Auto Generated with Ext Designer -->
<!-- Modifications to this file will be overwritten. -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>LxSagosViewer.xds</title>
<link rel="stylesheet" type="text/css" href="resources/css/ext-all.css"/>
<link rel="stylesheet" type="text/css" href="resources/ux/gridfilters/css/GridFilters.css" />
<link rel="stylesheet" type="text/css" href="resources/ux/gridfilters/css/RangeMenu.css" />
<script type="text/javascript" src="resources/ext-base.js"></script>
<script type="text/javascript" src="resources/ext-all.js"></script>
<!-- extensions -->
<script type="text/javascript" src="resources/ux/gridfilters/menu/RangeMenu.js"></script>
<script type="text/javascript" src="resources/ux/gridfilters/menu/ListMenu.js"></script>
<script type="text/javascript" src="resources/ux/gridfilters/GridFilters.js"></script>
<script type="text/javascript" src="resources/ux/gridfilters/filter/Filter.js"></script>
<script type="text/javascript" src="resources/ux/gridfilters/filter/StringFilter.js"></script>
<script type="text/javascript" src="resources/ux/gridfilters/filter/DateFilter.js"></script>
<script type="text/javascript" src="resources/ux/gridfilters/filter/ListFilter.js"></script>
<script type="text/javascript" src="resources/ux/gridfilters/filter/NumericFilter.js"></script>
<script type="text/javascript" src="resources/ux/gridfilters/filter/BooleanFilter.js"></script>
<script type="text/javascript" src="LxSagosVwWindow.ui.js"></script>
<script type="text/javascript" src="LxSagosVwWindow.js"></script>
<script type="text/javascript" src="lxsMarcajes.js"></script>
<script type="text/javascript" src="LxTCViewer_window_index.js"></script>
</head>
<body></body>
</html>
Hope someone can help me !!!!!!