fckeditor
    path a root!
    cambiar a ckeditor
    ckeditor images
        images 2 carpetas private y public
    ckeditor styles
    
bitacora
    summary del record
    grid id segun tabla/all
    grid cols segun tabla/all
    delete antes de fecha pa quien pueda
    
jqgrid
    save state save width and height!
    
cardex_window
    delete ok close window!
    child cardex trap add
    alta de listado a new window
    
dialog position on subgrid

workflow
    workflow_paso child display
    workflow_paso add defaults!
    workflow template fire pasos?

iacdialog
    upload files

webservice
    delete tbl/id
    upload file table/id   


Al guardar cuando otro cambia a la vez cambian: 
    key_value_select,     sleect_many
    checar checkboxes
    
Msg de row added -not tested
    en navigator add
    afterSubmit: function (jqXHR) {
        var myInfo = '<div class="ui-state-highlight ui-corner-all">' +
                '<span class="ui-icon ui-icon-info" ' +
                'style="float: left; margin-right: .3em;"></span>' +
                '<span>The row is successfully added</span></div>',
            $infoTr,
            $infoTd;
    
        if (jqXHR.responseText !== "OK") {
            return [false, jqXHR.responseText];
        }
    
        $infoTr = $("#TblGrid_" + $.jgrid.jqID(this.id) + ">tbody>tr.tinfo"),
        $infoTd = $infoTr.children("td.topinfo");
        $infoTd.html(myInfo);
        $infoTr.show();
    
        // hide the info after 3 sec timeout
        setTimeout(function () {
            $infoTd.children("div")
                .fadeOut("slow", function () {
                    // Animation complete.
                      $infoTr.hide();
                });
        }, 3000);
    }
    

