开发者

Can I change the primary ID of a row in JQGrid without reloading?

I'm trying to implement inline inserting in a JQGrid. My approach thus far is:

  • Use addRowData to put a blank row at the end with ID=-1
  • Use editGridRow to edit that row
  • Detect on the server that this update is actually an insert because ID=-1, and return the new ID value

Suprisingly, this rube goldberg sc开发者_StackOverflow中文版heme works pretty well. To make it seamless, though, I'd like to silently update the ID of the row that was just added, so that the user can continue to edit the other columns. I'd rather not do a grid.trigger("reloadGrid"), because I lose focus on that row.

I've tried

grid.setRowData(-1, { MyPrimaryKeyField: newID });

but that doesn't work (it still thinks the row's ID is -1). Is there an easy way to change the primary ID of a row without reloading the whole grid?


Actually you can't change grids primary row Id by "setRowData", but there is a simple way to do it :

$("#-1").attr('id',newId);

;-)


You could work around this by making an AJAX call to do the insert and return the new ID. Once you have the ID, call reloadGrid and then select the row using the newly returned ID. You would want to also put up a spinner while you are doing this so the user knows your page is busy. Not quite what you are asking for but it should meet your needs.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜