Forum
Topic RSS
Hello,
I'm using a grid and multiselect rows to edit. When I click on the next/prev arrow buttons in the modal box, the result is at the grid, the checkboxes are being marked (checked).
Is there a way to disable the next/prev arrow buttons?
Thank you.
Jmcleod
It's not who I am underneath, but what I do that defines me.
Sorry, here's some of my code from the ".navGrid"
.navGrid('#pager', { edit:false, add:false, del:false, refresh:false, search:false},{height:200, reloadAfterSubmit:true })
.navButtonAdd('#pager',{caption:"Approve LOI",
onClickButton:function() {
//retreive row id array from Grid
var gsr = jQuery('#list').getGridParam('selarrrow');
// if user selects a row then update applications table in database, applicationStatus = 'lioSubmitted' and lioApproved = '1'
if(gsr){
//alert(gsr);
jQuery('#list').editGridRow(
gsr,
{
height:200,
reloadAfterSubmit:false,
bSubmit:"Approve",
editCaption:"Approve Letter of Intent",
drag:true,
modal:true
}
);
} else {
alert("Please select Row.");
}
}
});
It's not who I am underneath, but what I do that defines me.
13:52
Moderators
30/10/2007
OfflineHello,
I'm wondering how this work.
You have
var gsr = jQuery('#list').getGridParam('selarrrow');
this should return array, but to the editGridRow we should pass single value.
Not sure what you actually try to do. Is this the entry code or there is a more?
Also to disable these buttons you can use beforeShowForm event like this
beforeShowForm : function (formid) {
$("#pData, #nData",formid).hide();
}
Regards
Tony
For professional UI suites for Java Script and PHP visit us at our commercial products site - guriddo.net - by the very same guys that created jqGrid.
14:08
Moderators
30/10/2007
OfflineHello,
I'm wondering how this work.
You have
var gsr = jQuery('#list').getGridParam('selarrrow');
this should return array, but to the editGridRow we should pass single value.
Not sure what you actually try to do. Is this the entry code or there is a more?
Also to disable these buttons you can use beforeShowForm event like this
beforeShowForm : function (formid) {
$("#pData, #nData",formid).hide();
}
Regards
Tony
For professional UI suites for Java Script and PHP visit us at our commercial products site - guriddo.net - by the very same guys that created jqGrid.
Most Users Ever Online: 994
Currently Online:
12 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
Log In
Home