include("grid_param.php");
$class_grid=new grid_param();
if(array_key_exists("operacion",$_POST))
{
$operacion=$_POST["operacion"];
$total=$_POST["totrows"];//Total de filas del grid, se guarda en el oculto totrows
}
else
{
$operacion="";
$total=1; //Total de filas inicial del grid
}
//Titulos de la tabla
$title[1]="Cuenta"; $title[2]="Denominacion";
$name="grid1";
$titletable="Prueba";
$widthtable="500";
$object[1][1]="";
$object[1][2]="";
?>