La pregunta es bastante sencilla, pero le he dado vueltas a la pagina de Trirand pero no he podido encontrar una forma de como poder hacer mas grande la grilla.
Actualmente, tengo una grilla con JqGrid, con Php pero no logro poder hacer mas grande la grilla, he logrado hacer mas grande las columnas pero la muy grilla no
Se que la pregunta es de novatos, pero no le he hallado. Espero me pueda ayudar.
Tambien les muesto mi codigo Php, para que vean lo que estoy haciendo.
Código:
<?php require_once 'jq-config.php'; // include the jqGrid Class require_once "php/jqGrid.php"; // include the PDO driver class require_once "php/jqGridPdo.php"; // Connection to the server $conn = new PDO(DB_DSN,DB_USER,DB_PASSWORD); // Create the jqGrid instance $grid = new jqGridRender($conn); // Write the SQL Query // We suppose that mytable exists in your database $grid->SelectCommand = "SELECT CONCAT(C.nombre,' ',C.apellido ) AS Nombre, G.Observacion, T.nombre Topico, If(G.Prioridad = 1, 'Alta',If( G.Prioridad = 2, 'Media','Baja')) Prioridad, O.nombre Output, G.Fecha_Gap, G.Fecha_Cierre FROM Colaboradores C, Gaps G, Topicos T, Outputs O WHERE C.id = G.id_colaborador AND T.id = G.id_topico AND O.id = G.id_output"; // set the ouput format to json $grid->dataType = 'json'; // Let the grid create the model $grid->setColModel(); // Set the url from where we obtain the data $grid->setUrl('myfirstgrid.php'); // Set grid caption using the option caption $grid->setGridOptions(array( "caption"=>"GAP's De Auditoria Contabilidad y Finanzas", "rowNum"=>10, "sortname"=>"C.nombre", "rowList"=>array(10,20,50) )); // Change some property of the field(s) $grid->setColProperty("Nombre", array("width"=>"600")); $grid->setColProperty("Observacion", array("width"=>"1200")); $grid->setColProperty("Topico", array("width"=>"300")); $grid->setColProperty("Prioridad", array("width"=>"300")); $grid->setColProperty("Output", array("width"=>"300")); $grid->setColProperty("Fecha_Gap", array("width"=>"300")); $grid->setColProperty("Fecha_Cierre", array("width"=>"300")); // Run the script $grid->renderGrid('#grid','#pager',true, null, null, true,true); ?>