tengo este código es un grid de jqwidgets funciona muy bien, ahora le añadi una columna con un vinculo que dice "ver" que es un vinculo a otra pagina, ahora yo quiero que se habrá como un simple popups de windows, si me dan una ayuda, gracias
Código PHP:
$("#jqxgrid").jqxGrid(
{
source: dataadapter,
theme: theme,
filterable: true,
sortable: true,
autoheight: true,
pageable: true,
virtualmode: true,
rendergridrows: function(obj)
{
return obj.data;
},
columns: [
{ text: 'Shipped Date', datafield: 'ShippedDate', cellsformat: 'dd-MM-yyyy', width: 80 },
{ text: 'Ship Name', datafield: 'ShipName', width: 200 },
{ text: 'Address', datafield: 'ShipAddress', width: 180 },
{ text: 'City', datafield: 'ShipCity', width: 100 },
{ text: 'Country', datafield: 'ShipCountry', width: 140 },
{ text: 'Ver', datafield: 'Ver',
cellsrenderer: function (row) {
var rowdata = $("#jqxgrid").jqxGrid('getrowdata', row);
var name = rowdata.ShipName;
var url = 'detalle.php?ShipName=' + name
return "<a target='_blank' href='" + url + "'>Ver</a>";
}}
]
});
});