Agregar botones jqgrid para edicion con llamada a accion externa


/ Published in: jQuery
Save to your folder(s)

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


Copy this code and paste it in your HTML
  1. function agregarBotonesGrid(id) {
  2. var botonEdicion = "<button title='Editar Obra Social' class='botonEditar' onclick=\"window.location.href='/ObraSocial/EditarObraSocial?obraSocialId=" + id + "'\"></button>";
  3. $("#obraSocialTable").setRowData(id, { acciones: botonEdicion });
  4. $(".botonEditar").button({
  5. text: false, icons: {
  6. primary: "ui-icon-pencil"
  7. }
  8. });
  9. };

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.