jqGrid warning please select row position

前端 未结 3 1404
挽巷
挽巷 2021-01-17 00:24

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

3条回答
  •  庸人自扰
    2021-01-17 01:04

    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')
                        });
                        }
    

提交回复
热议问题