File size: 4,095 Bytes
eb67da4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
/**
* Pimcore
*
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Pimcore Commercial License (PCL)
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
* @license http://www.pimcore.org/license GPLv3 and PCL
*/
pimcore.helpers.grid = {};
pimcore.helpers.grid.buildDefaultStore = function (url, fields, itemsPerPage, customConfig) {
if (url.indexOf('?') === -1) {
url = url + "?";
} else {
url = url + "&";
}
var proxy = new Ext.data.proxy.Ajax({
timeout: 120000,
batchActions: false,
type: 'ajax',
reader: {
type: 'json',
rootProperty: 'data'
},
writer: {
type: 'json',
writeAllFields: true,
rootProperty: 'data',
encode: 'true'
},
api: {
create: url + "xaction=create",
read: url + "xaction=read",
update: url + "xaction=update",
destroy: url + "xaction=destroy"
},
actionMethods: {
create: 'POST',
read: 'POST',
update: 'POST',
destroy: 'POST'
}/*,
listeners: {
exception: function(proxy, response, operation){
Ext.MessageBox.show({
title: 'REMOTE EXCEPTION',
msg: operation.getError(),
icon: Ext.MessageBox.ERROR,
buttons: Ext.Msg.OK
});
}
}*/
});
var config = {
proxy: proxy,
autoLoad: true,
autoSync: true,
pageSize: itemsPerPage,
fields: fields,
remoteSort: true,
remoteFilter: true
};
if (customConfig) {
Ext.apply(config, customConfig);
}
var store = Ext.create('Ext.data.Store', config);
return store;
};
pimcore.helpers.grid.getDefaultPageSize = function (scale) {
if (scale < 0) {
return 25;
}
return 50;
};
pimcore.helpers.grid.buildDefaultPagingToolbar = function (store, options) {
var config = {
pageSize: pimcore.helpers.grid.getDefaultPageSize(),
store: store,
displayInfo: true,
displayMsg: '{0} - {1} / {2}',
emptyMsg: t("no_items_found")
};
if (typeof options !== "undefined") {
config = Ext.applyIf(options, config);
}
var pagingtoolbar = Ext.create('Ext.PagingToolbar', config);
if (!config.hideSelection) {
// add per-page selection
pagingtoolbar.add("-");
pagingtoolbar.add(Ext.create('Ext.Toolbar.TextItem', {
text: t("items_per_page")
}));
pagingtoolbar.add(Ext.create('Ext.form.ComboBox', {
store: [
[25, "25"],
[50, "50"],
[100, "100"],
[200, "200"],
[999999, t("all")]
],
mode: "local",
width: 80,
value: config.pageSize,
triggerAction: "all",
editable: true,
listeners: {
change: function (box, newValue, oldValue) {
var store = this.getStore();
newValue = intval(newValue);
if (!newValue) {
newValue = options.pageSize;
}
store.setPageSize(newValue);
this.pageSize = newValue;
this.moveFirst();
}.bind(pagingtoolbar)
}
}));
}
return pagingtoolbar;
};
pimcore.helpers.grid.getTranslationColumnRenderer = function (value, metaData, record, rowIndex, colIndex, store) {
// BUG: CWE-79 Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')
// return t(value);
// FIXED:
return Ext.util.Format.htmlEncode(t(value));
};
|