I’m trying to update the content for an entire column named projNum on a table named tblTasks with the value taken from ASP.NET textbox:
Â
$(‘#<%=txtBox.ClientID%>‘)on.(‘change’, function (){
var temp = $(‘#<%=txtBox.ClientID%>‘).val();
while (temp.length < 9) { temp = temp + “X”;} $(‘tblTasks’).jqgrid(‘setRowData’, rowid, ‘projNum’, temp); });
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top