Forum
Topic RSS
12:01
25/02/2009
OfflineHello,
I would like after the addition or modification of a line, display a message (via a message box alert ()) that the server retrounerait:
eg "update done"
But I do not find in the doc if this is possible and how: (
I tested it :
onSelectRow: function(id){
if(id && id!==lastsel){
jQuery('#Roles').jqGrid('saveRow',lastsel,'','',alert(toto));
}
}
but I do not know how to have the opportunity to start my message with the alert message from the server
Thank you for your help
17:37
25/02/2009
OfflineI tested it but it does not work well:
…
onSelectRow: function(id){
if(id && id!==lastsel){
jQuery('#Roles').jqGrid('saveRow',lastsel,function(response, postdata){
data = eval ("(" + response.responseText + ")");
alert(data.msg);
});
jQuery('#Roles').jqGrid('restoreRow',lastsel);
jQuery('#Roles').jqGrid('editRow',id,true);
lastsel=id;
}
},
…
This way it works against the best by alert () not working and I can not retrieve the message has returned from the server: (
if(id && id!==lastsel){
jQuery('#Roles').jqGrid('saveRow',lastsel);
jQuery('#Roles').jqGrid('restoreRow',lastsel);
jQuery('#Roles').jqGrid('editRow',id,true,null,function(response, postdata){
alert('erreur');
});
lastsel=id;
}
},
Most Users Ever Online: 994
Currently Online:
22 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
Log In
Home