tags:

views:

78

answers:

1

I'm trying to create a grid that will show more details (with possibility for editing) in the form editing mode than in the table view. Is there a way I can define a column to be hidden in the grid but shown in the row editing dialog? (see http://www.trirand.com/jqgridwiki/doku.php?id=wiki:form_editing#editgridrow)

A: 

You will find the answer in http://stackoverflow.com/questions/3176157/sending-additional-parameters-to-editurl-on-jqgrid/3177531#3177531. Another answer http://stackoverflow.com/questions/3140644/passing-dynamic-params-to-delete-url-method-in-jqgrid/3141029#3141029 can be also interesting for you.

Oleg
Perfect! {hidden: true, editrules: { edithidden: true }} is exactly what I needed
Itamar Bar-Lev