jqgrid - beforeShowform in inline editing -
is possible fire beforshowform event in inline editing, because per wiki m not able find solution call before show form in inline editing option editformbutton:true . appreciated
inline editing don't display form. usage of beforeshowform not possible in inline editing mode.
you wrote usage of editformbutton: true
. use formatter: "actions"
property. in case use form editing. can specify form editing options inside of editoptions
option (see the documentation). usage of formatter: "actions"
should below
formatter: "actions", formatoptions: { editformbutton: true, editoptions: { beforeshowform: function ($form) { alert("in beforeshowform"); } } }
Comments
Post a Comment