Hello,
I do not think so.
This behavior is from a onSelectRow event.
In the example page it check for the current and last selected row.
If you have only one row this is really true. To overcome this we
should change a logic in
onSelectRow something like:
var last_selected_row;
....

onSelectRow : function(row_id){
   if(row_id != null) {
      if(row_id == last_selected_row) {
          // do here what you want
      } else {
         // do other things here or maybe edit it
         jQuery(...).editRow(row_id, true);
      }
   }
}

It is your chioce to do what you want.

Best Regards
Tony
On Sep 4, 1:46 am, Michael Nelson <[EMAIL PROTECTED]> wrote:
> Hello,
>
> jqGrid inline edit is working fine, unless there is only a single row 
> returned from the database. In that case, neither enter nor escape or 
> clicking elsewhere on the page will take that row out of edit mode.
>
> Any suggestions?
>
> thanks,
> Michael    

Reply via email to