hi mens i need your help for next detail
in the grid i have one select in show one list of material,
in this case need to show only name of material
i´m use json create in php for show list with next code
create: function (evt, ui) {
this.widget().pqTooltip(),
grid = this;
var column;
//fetch options for ShipCountry column from server.
$.getJSON("../Configuracion/clases/Cl_Prod_Materiales.php", function (response) {
column = grid.getColumn({ dataIndx: 'Material' });
column.editor.options = response;
});
}