| Method | Parameters | Description |
|---|---|---|
| hide | none | Hides a row, identified as "tr_fieldname" on the edit form.
$("#tr_fieldname",formid).hide()where fieldname is the name of the column in the grid, and formid is the name of the form
|
| show | none | Shows a row on the edit form.
$("#tr_fieldname",formid).show()where fieldname is the name of the column in the grid, and formid is the name of the form
|