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 | : 13.58.32.115
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.tbltogrid.js
/* Transform a table to a jqGrid. Peter Romianowski <peter.romianowski@optivo.de> If the first column of the table contains checkboxes or radiobuttons then the jqGrid is made selectable. */ // Addition - selector can be a class or id function tableToGrid(selector, options) { $(selector).each(function() { if(this.grid) {return;} //Adedd from Tony Tomov // This is a small "hack" to make the width of the jqGrid 100% $(this).width("99%"); var w = $(this).width(); // Text whether we have single or multi select var inputCheckbox = $('input[type=checkbox]:first', $(this)); var inputRadio = $('input[type=radio]:first', $(this)); var selectMultiple = inputCheckbox.length > 0; var selectSingle = !selectMultiple && inputRadio.length > 0; var selectable = selectMultiple || selectSingle; var inputName = inputCheckbox.attr("name") || inputRadio.attr("name"); // Build up the columnModel and the data var colModel = []; var colNames = []; $('th', $(this)).each(function() { if (colModel.length == 0 && selectable) { colModel.push({ name: '__selection__', index: '__selection__', width: 0, hidden: true }); colNames.push('__selection__'); } else { colModel.push({ name: $(this).attr("id") || $(this).html(), index: $(this).attr("id") || $(this).html(), width: $(this).width() || 150 }); colNames.push($(this).html()); } }); var data = []; var rowIds = []; var rowChecked = []; $('tbody > tr', $(this)).each(function() { var row = {}; var rowPos = 0; $('td', $(this)).each(function() { if (rowPos == 0 && selectable) { var input = $('input', $(this)); var rowId = input.attr("value"); rowIds.push(rowId || data.length); if (input.attr("checked")) { rowChecked.push(rowId); } row[colModel[rowPos].name] = input.attr("value"); } else { row[colModel[rowPos].name] = $(this).html(); } rowPos++; }); if(rowPos >0) data.push(row); }); // Clear the original HTML table $(this).empty(); // Mark it as jqGrid $(this).addClass("scroll"); $(this).jqGrid($.extend({ datatype: "local", width: w, colNames: colNames, colModel: colModel, multiselect: selectMultiple //inputName: inputName, //inputValueCol: imputName != null ? "__selection__" : null }, options || {})); // Add data for (var a = 0; a < data.length; a++) { var id = null; if (rowIds.length > 0) { id = rowIds[a]; if (id && id.replace) { // We have to do this since the value of a checkbox // or radio button can be anything id = encodeURIComponent(id).replace(/[.\-%]/g, "_"); } } if (id == null) { id = a + 1; } $(this).addRowData(id, data[a]); } // Set the selection for (var a = 0; a < rowChecked.length; a++) { $(this).setSelection(rowChecked[a]); } }); };
Close