zend framework - Getting row data from Ingot_JQuery_JqGrid -
i'm using ingot_jquery_jqgrid in zend project. know how edit data double click, have no idea how extract data selected row.
thanks
ok, our fix problem sending parameter through ajax request:
function sendrowid(rowid,status) { var mydata = "row=" + rowid; $.ajax({ url: "<?php echo $this->url( array ('module' => 'gmarim', 'controller' => 'student', 'action' => 'select'), null, false, true );?>", data : mydata, type: 'post', success: function(d,s,x){ }, async: false }); }
Comments
Post a Comment