Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.142.174.8
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
sdu /
JQGrid3.5 /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
i18n
[ DIR ]
drwxr-xr-x
JsonXml.js
8.64
KB
-rwxr-xr-x
grid.base.js
67.8
KB
-rwxr-xr-x
grid.celledit.js
15.35
KB
-rwxr-xr-x
grid.common.js
16.74
KB
-rwxr-xr-x
grid.custom.js
23.58
KB
-rwxr-xr-x
grid.formedit.js
58.78
KB
-rwxr-xr-x
grid.import.js
6.95
KB
-rwxr-xr-x
grid.inlinedit.js
6.4
KB
-rwxr-xr-x
grid.loader.js
2.16
KB
-rwxr-xr-x
grid.postext.js
1.5
KB
-rwxr-xr-x
grid.setcolumns.js
5.22
KB
-rwxr-xr-x
grid.subgrid.js
7.89
KB
-rwxr-xr-x
grid.tbltogrid.js
2.75
KB
-rwxr-xr-x
grid.treegrid.js
12.22
KB
-rwxr-xr-x
index.js
1.84
KB
-rwxr-xr-x
index_old.html
4.54
KB
-rwxr-xr-x
install.txt
2.04
KB
-rwxr-xr-x
jqDnR.js
1.84
KB
-rwxr-xr-x
jqModal.js
3.32
KB
-rwxr-xr-x
jquery-1.3.2.js
117.84
KB
-rwxr-xr-x
jquery-1.3.2.min.js
55.91
KB
-rwxr-xr-x
jquery-ui-1.7.2.custom.min.js
188.23
KB
-rwxr-xr-x
jquery-ui-1.7.2.custom.min.js_...
3.57
KB
-rwxr-xr-x
jquery.fmatter.js
15.5
KB
-rwxr-xr-x
jquery.jqGrid.min.js
177.72
KB
-rwxr-xr-x
jquery.js
29.15
KB
-rwxr-xr-x
jquery.searchFilter.js
29.58
KB
-rwxr-xr-x
ui.core.js
13.61
KB
-rwxr-xr-x
ui.sortable.js
37.15
KB
-rwxr-xr-x
ui.tabs.js
18.62
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : grid.inlinedit.js
;(function($){ /** * jqGrid extension for manipulating Grid Data * Tony Tomov tony@trirand.com * http://trirand.com/blog/ * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html **/ $.fn.extend({ //Editing editRow : function(rowid,keys,oneditfunc,succesfunc, url, extraparam, aftersavefunc,errorfunc, afterrestorefunc) { return this.each(function(){ var $t = this, nm, tmp, editable, cnt=0, focus=null, svr={}, ind,cm; if (!$t.grid ) { return; } ind = $($t).getInd(rowid,true); if( ind == false ) {return;} editable = $(ind).attr("editable") || "0"; if (editable == "0") { cm = $t.p.colModel; $('td',ind).each( function(i) { nm = cm[i].name; var treeg = $t.p.treeGrid===true && nm == $t.p.ExpandColumn; if(treeg) tmp = $("span:first",this).html(); else { try { tmp = $.unformat(this,{colModel:cm[i]},i); } catch (_) { tmp = $(this).html(); } } if ( nm != 'cb' && nm != 'subgrid' && nm != 'rn') { svr[nm]=tmp; if(cm[i].editable===true) { if(focus===null) { focus = i; } if (treeg) $("span:first",this).html(""); else $(this).html(""); var opt = $.extend({},cm[i].editoptions || {},{id:rowid+"_"+nm,name:nm}); if(!cm[i].edittype) { cm[i].edittype = "text"; } var elc = createEl(cm[i].edittype,opt,tmp,true); $(elc).addClass("editable"); if(treeg) $("span:first",this).append(elc); else $(this).append(elc); //Again IE if(cm[i].edittype == "select" && cm[i].editoptions.multiple===true && $.browser.msie) { $(elc).width($(elc).width()); } cnt++; } } }); if(cnt > 0) { svr['id'] = rowid; $t.p.savedRow.push(svr); $(ind).attr("editable","1"); $("td:eq("+focus+") input",ind).focus(); if(keys===true) { $(ind).bind("keydown",function(e) { if (e.keyCode === 27) {$($t).restoreRow(rowid, afterrestorefunc);} if (e.keyCode === 13) { $($t).saveRow(rowid,succesfunc, url, extraparam, aftersavefunc,errorfunc, afterrestorefunc ); return false; } e.stopPropagation(); }); } if( $.isFunction(oneditfunc)) { oneditfunc(rowid); } } } }); }, saveRow : function(rowid, succesfunc, url, extraparam, aftersavefunc,errorfunc, afterrestorefunc) { return this.each(function(){ var $t = this, nm, tmp={}, tmp2={}, editable, fr, cv, ind; if (!$t.grid ) { return; } ind = $($t).getInd(rowid,true); if(ind == false) {return;} editable = $(ind).attr("editable"); url = url ? url : $t.p.editurl; if (editable==="1" && url) { var cm; $("td",ind).each(function(i) { cm = $t.p.colModel[i]; nm = cm.name; if ( nm != 'cb' && nm != 'subgrid' && cm.editable===true && nm != 'rn') { switch (cm.edittype) { case "checkbox": var cbv = ["Yes","No"]; if(cm.editoptions ) { cbv = cm.editoptions.value.split(":"); } tmp[nm]= $("input",this).attr("checked") ? cbv[0] : cbv[1]; break; case 'text': case 'password': case 'textarea': case "button" : tmp[nm]= !$t.p.autoencode ? $("input, textarea",this).val() : $.jgrid.htmlEncode($("input, textarea",this).val()); break; case 'select': if(!cm.editoptions.multiple) { tmp[nm] = $("select>option:selected",this).val(); tmp2[nm] = $("select>option:selected", this).text(); } else { var sel = $("select",this), selectedText = []; tmp[nm] = $(sel).val(); if(tmp[nm]) tmp[nm]= tmp[nm].join(","); else tmp[nm] =""; $("select > option:selected",this).each( function(i,selected){ selectedText[i] = $(selected).text(); } ); tmp2[nm] = selectedText.join(","); } if(cm.formatter && cm.formatter == 'select') tmp2={}; break; } cv = checkValues(tmp[nm],i,$t); if(cv[0] === false) { cv[1] = tmp[nm] + " " + cv[1]; return false; } } }); if (cv[0] === false){ try { info_dialog($.jgrid.errors.errcap,cv[1],$.jgrid.edit.bClose); } catch (e) { alert(cv[1]); } return; } if(tmp) { tmp["id"] = rowid; if(extraparam) { tmp = $.extend({},tmp,extraparam);} } if(!$t.grid.hDiv.loading) { $t.grid.hDiv.loading = true; $("div.loading",$t.grid.hDiv).fadeIn("fast"); if (url == 'clientArray') { tmp = $.extend({},tmp, tmp2); var resp = $($t).setRowData(rowid,tmp); $(ind).attr("editable","0"); for( var k=0;k<$t.p.savedRow.length;k++) { if( $t.p.savedRow[k].id == rowid) {fr = k; break;} } if(fr >= 0) { $t.p.savedRow.splice(fr,1); } if( $.isFunction(aftersavefunc) ) { aftersavefunc(rowid,resp); } } else { $.ajax({url:url, data: tmp, type: "POST", complete: function(res,stat){ if (stat === "success"){ var ret; if( $.isFunction(succesfunc)) { ret = succesfunc(res);} else ret = true; if (ret===true) { tmp = $.extend({},tmp, tmp2); $($t).setRowData(rowid,tmp); $(ind).attr("editable","0"); for( var k=0;k<$t.p.savedRow.length;k++) { if( $t.p.savedRow[k].id == rowid) {fr = k; break;} }; if(fr >= 0) { $t.p.savedRow.splice(fr,1); } if( $.isFunction(aftersavefunc) ) { aftersavefunc(rowid,res.responseText); } } else { $($t).restoreRow(rowid, afterrestorefunc); } } }, error:function(res,stat){ if($.isFunction(errorfunc) ) { errorfunc(rowid, res, stat); } else { alert("Error Row: "+rowid+" Result: " +res.status+":"+res.statusText+" Status: "+stat); } } }); } $t.grid.hDiv.loading = false; $("div.loading",$t.grid.hDiv).fadeOut("fast"); $(ind).unbind("keydown"); } } }); }, restoreRow : function(rowid, afterrestorefunc) { return this.each(function(){ var $t= this, fr, ind; if (!$t.grid ) { return; } ind = $($t).getInd(rowid,true); if(ind == false) {return;} for( var k=0;k<$t.p.savedRow.length;k++) { if( $t.p.savedRow[k].id == rowid) {fr = k; break;} } if(fr >= 0) { $($t).setRowData(rowid,$t.p.savedRow[fr]); $(ind).attr("editable","0"); $t.p.savedRow.splice(fr,1); } if ($.isFunction(afterrestorefunc)) { afterrestorefunc(rowid); } }); } //end inline edit }); })(jQuery);
Close