Forum


02:02

22/07/2010

Hello,
The issue that I am having is when I attempt to add a new row to a grid and enable it for inline editing the record dissapears due to a grid refresh before I can select it for editing.
jQuery("#myGrid").editRow(0,true);
This is the general shape of my grid definition with the relevent fields are listed below:
function refreshGrid()
{
var userID = jQuery("#empSelect").val();
jQuery("#timeGrid").jqGrid('setGridParam',
{postData: { action: "requestData", where: "userID = "+userID+" }});
jQuery("#timeGrid").setGridParam({ datatype: 'json' }).trigger("reloadGrid");
}
// Build my grid
jQuery("#myGrid").jqGrid(
{
url:'dir/myHandler.ajax.php',
editurl:'dir/myHandler.ajax.php',
datatype: 'json',
mtype: 'POST',
colNames:[...],
colModel:[...],
pager: jQuery('#pager'),
loadonce: true,
viewrecords: true
});
// When Add New Record is clicked
jQuery('input[value=New Record]').click(function()
{
jQuery("#timeGrid").setGridParam({datatype: 'local', loadonce: true}); // Stop refresh?
jQuery("#timeGrid").addRowData(0,{id:"0",entryDate:getToday(),…}, "last"); // Insert blank record
jQuery("#timeGrid").editRow(0,true); // Activate record for editing
});
So my question is: how do i prevent the grid from reloading while allowing the user to enter data in inline editing mode?
Thanks in advace!
- Eric
Most Users Ever Online: 715
Currently Online:
76 Guest(s)
Currently Browsing this Page:
1 Guest(s)
Top Posters:
OlegK: 1255
markw65: 179
kobruleht: 144
phicarre: 132
YamilBracho: 124
Renso: 118
Member Stats:
Guest Posters: 447
Members: 11373
Moderators: 2
Admins: 1
Forum Stats:
Groups: 1
Forums: 8
Topics: 10592
Posts: 31289
Newest Members:
, razia, Prankie, psky, praveen neelam, greg.valainis@pa-tech.comModerators: tony: 7721, Rumen[Trirand]: 81
Administrators: admin: 66