I cannot call jqgrid using the . operator as given in the examples:
jQuery("#grid_id").editGridRow( "new", options );
I get the following error:
jQuery("#grid_id").editGridRow is not a function
Instead I always have to make a call in the following way:
jQuery("#grid_id").jqGrid("editGridRow", "new", options );
I don't have any problems with the latter approach - I am curious why the former does not work for me, when most examples and tutorials using the former approach
Thanks

