Search code examples
jqgrid

Posting non-editable values in jqgrid


I'm using jqgrid 3.8.2 and the grid have many columns that are non-editable but still want to be posted to the server. How I can do that? (If I set editable:false then the field is not getting posted the the server)


Solution

  • It seems to me that the column settings

    hidden: true, editable: true, editrules: { edithidden: false }
    

    will do what you need.