/ Published in: jQuery
Agregar botones de edicion a grid de jqgrid que luego llama a controller para edicion pasando un Guid como string En produccion le esta faltando el enlace al directorio virtual
Expand |
Embed | Plain Text
function agregarBotonesGrid(id) { var botonEdicion = "<button title='Editar Obra Social' class='botonEditar' onclick=\"window.location.href='/ObraSocial/EditarObraSocial?obraSocialId=" + id + "'\"></button>"; $("#obraSocialTable").setRowData(id, { acciones: botonEdicion }); $(".botonEditar").button({ text: false, icons: { primary: "ui-icon-pencil" } }); };
You need to login to post a comment.
