is there a way to positioning the dialog message \"Please select row\" in the corner left top of the selected grid?
I just want the same behavior in alert warning, j
look at this answer
http://www.ok-soft-gmbh.com/jqGrid/CenterEditForm.htm
you need to change your beforeShowForm event
or you can implement this function on afterShowform event
function centerForm ($form) {
$form.closest('div.ui-jqdialog').position({
my: "center",
of: $('#grid').closest('div.ui-jqgrid')
});
}